[Python-checkins] CVS: python/nondist/peps pep-0237.txt,1.12,1.13

A.M. Kuchling akuchling@users.sourceforge.net
Tue, 30 Oct 2001 13:12:16 -0800


Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv3850

Modified Files:
	pep-0237.txt 
Log Message:
Typo fixes


Index: pep-0237.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0237.txt,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** pep-0237.txt	2001/08/23 04:34:41	1.12
--- pep-0237.txt	2001/10/30 21:12:14	1.13
***************
*** 101,106 ****
        bits, if returning a short int would lose bits.
  
!     - Currently, hex and oct literals for for short ints may specify
!       negative values; for example 0xffffffff == -1 on a 32-bint
        machine.  This will be changed to equal 0xffffffffL (2**32-1).
  
--- 101,106 ----
        bits, if returning a short int would lose bits.
  
!     - Currently, hex and oct literals for short ints may specify
!       negative values; for example 0xffffffff == -1 on a 32-bit
        machine.  This will be changed to equal 0xffffffffL (2**32-1).
  
***************
*** 193,197 ****
         incompatibilities which will break some old code, this phase
         may require a future statement and/or warnings, and a
!        prolongued transition phase.
  
      Phase A will be implemented in Python 2.2.
--- 193,197 ----
         incompatibilities which will break some old code, this phase
         may require a future statement and/or warnings, and a
!        prolonged transition phase.
  
      Phase A will be implemented in Python 2.2.
***************
*** 200,204 ****
      stages of phase B:
  
!     B1. The remaining semantic differenes are addressed.  Operations
          that give different results than before will issue a warning
          that is on by default.  A warning for the use of long literals
--- 200,204 ----
      stages of phase B:
  
!     B1. The remaining semantic differences are addressed.  Operations
          that give different results than before will issue a warning
          that is on by default.  A warning for the use of long literals
***************
*** 315,319 ****
  
      A complete implementation of phase A is present in the current CVS
!     tree and will be release with Python 2.2a3.  (It didn't make it
      into 2.2a2.)  Still missing are documentation and a test suite.
  
--- 315,319 ----
  
      A complete implementation of phase A is present in the current CVS
!     tree and will be released with Python 2.2a3.  (It didn't make it
      into 2.2a2.)  Still missing are documentation and a test suite.