[Python-checkins] CVS: python/nondist/peps pep-0224.txt,1.1,1.2

M.-A. Lemburg python-dev@python.org
Thu, 24 Aug 2000 07:16:13 -0700


Update of /cvsroot/python/python/nondist/peps
In directory slayer.i.sourceforge.net:/tmp/cvs-serv9223

Modified Files:
	pep-0224.txt 
Log Message:
Completed final thought and bumped the Python version number to 2.1.
The great thing about this PEP is that it is forward compatible :-)

Index: pep-0224.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0224.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** pep-0224.txt	2000/08/23 16:50:47	1.1
--- pep-0224.txt	2000/08/24 14:16:10	1.2
***************
*** 5,9 ****
  Status: Draft
  Type: Standards Track
! Python-Version: 2.0
  Created: 23-Aug-2000
  Post-History:
--- 5,9 ----
  Status: Draft
  Type: Standards Track
! Python-Version: 2.1
  Created: 23-Aug-2000
  Post-History:
***************
*** 106,110 ****
--- 106,113 ----
          C.__doc__b__ == "attribute C.b doc-string (2)"
  
+     A patch to the current CVS version of Python 2.0 which implements
+     the above is available on SourceForge at [1].
  
+ 
  Caveats of the Implementation
      
***************
*** 131,135 ****
      Since the definition of method "x" currently does not reset the
      used assignment name variable, it is still valid when the compiler
!     reaches [TBD: please finish your thought!]
  
      
--- 134,142 ----
      Since the definition of method "x" currently does not reset the
      used assignment name variable, it is still valid when the compiler
!     reaches the docstring "b's doc string" and thus assigns the string
!     to __doc__b__.
! 
!     A possible solution to this problem would be resetting the name
!     variable for all non-expression nodes.
  
      
***************
*** 141,145 ****
  References
  
!     [1] http://sourceforge.net/patch/?func=detailpatch&patch_id=XXX&group_id=5470
  
  
--- 148,152 ----
  References
  
!     [1] http://sourceforge.net/patch/?func=detailpatch&patch_id=101264&group_id=5470