[Python-checkins] r54970 - peps/trunk/pep-0000.txt peps/trunk/pep-3141.txt (original) (raw)

guido.van.rossum python-checkins at python.org
Wed Apr 25 22:43:01 CEST 2007


Author: guido.van.rossum Date: Wed Apr 25 22:42:59 2007 New Revision: 54970

Added: peps/trunk/pep-3141.txt (contents, props changed) Modified: peps/trunk/pep-0000.txt Log: Add PEP 3141 (named after 3.141), ABCs for numbers, by Jeffrey Jasskin. Not to endorse this (yet) but so we have a record in svn.

Modified: peps/trunk/pep-0000.txt

--- peps/trunk/pep-0000.txt (original) +++ peps/trunk/pep-0000.txt Wed Apr 25 22:42:59 2007 @@ -117,6 +117,7 @@ S 3117 Postfix Type Declarations Brandl S 3118 Revising the buffer protocol Oliphant, Banks S 3119 Introducing Abstract Base Classes GvR, Talin

@@ -473,6 +474,7 @@ S 3117 Postfix Type Declarations Brandl S 3118 Revising the buffer protocol Oliphant, Banks S 3119 Introducing Abstract Base Classes GvR, Talin

Key

Added: peps/trunk/pep-3141.txt

--- (empty file) +++ peps/trunk/pep-3141.txt Wed Apr 25 22:42:59 2007 @@ -0,0 +1,481 @@ +PEP: 3141 +Title: A Type Hierarchy for Numbers (and other algebraic entities) +Version: RevisionRevisionRevision +Last-Modified: DateDateDate +Author: Jeffrey Yasskin <jyasskin at gmail.com> +Status: Draft +Type: Standards Track +Content-Type: text/x-rst +Created: 23-Apr-2007 +Post-History: Not yet posted + + +Abstract +======== + +This proposal defines a hierarchy of Abstract Base Classes (ABCs) +[#pep3119] to represent numbers and other algebraic entities similar +to numbers. It proposes: + +* A hierarchy of algebraic concepts, including monoids, groups, rings,



More information about the Python-checkins mailing list