[Python-checkins] python/nondist/peps pep-0283.txt,1.8,1.9

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Tue, 18 Jun 2002 14:09:51 -0700


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

Modified Files:
	pep-0283.txt 
Log Message:
Various status updates.


Index: pep-0283.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0283.txt,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** pep-0283.txt	30 May 2002 03:18:42 -0000	1.8
--- pep-0283.txt	18 Jun 2002 21:09:48 -0000	1.9
***************
*** 85,90 ****
        http://mail.python.org/pipermail/python-dev/2002-May/024346.html
  
!     - Extended slice notation for all built-in sequences.  Raymond
!       Hettinger is working on this.
  
      - An iterator tools module featuring goodies from SML and Haskell?
--- 85,92 ----
        http://mail.python.org/pipermail/python-dev/2002-May/024346.html
  
!     - Extended slice notation for all built-in sequences.  A patch by
!       Michael Hudson has solved this, mostly; there's an open issue
!       about slice assignments where the source has a different length
!       than the destination, as in L[:5:] = range(10).
  
      - An iterator tools module featuring goodies from SML and Haskell?
***************
*** 92,96 ****
  
      - Speed up list iterations by filling tp_iter and other tweaks?
!       http://www.python.org/sf/560736
  
      - Fix the buffer object???
--- 94,98 ----
  
      - Speed up list iterations by filling tp_iter and other tweaks?
!       http://www.python.org/sf/560736  (This is done; also for xrange.)
  
      - Fix the buffer object???
***************
*** 103,111 ****
      - Timeoutsocket.  Work in progress.
        http://mail.python.org/pipermail/python-dev/2002-May/024077.html
!       http://www.python.org/sf/555085
  
      - Making None a keyword.  Can't be done right away, but a warning
        would be a first step.
        http://mail.python.org/pipermail/python-dev/2002-April/023600.html
  
      - Stage 2 of the int/long integration (PEP 237).  This mostly
--- 105,115 ----
      - Timeoutsocket.  Work in progress.
        http://mail.python.org/pipermail/python-dev/2002-May/024077.html
!       http://www.python.org/sf/555085  (Most of this is done, but we
!       still need to add a global timeout option.)
  
      - Making None a keyword.  Can't be done right away, but a warning
        would be a first step.
        http://mail.python.org/pipermail/python-dev/2002-April/023600.html
+       Ditto for 'as', which has been a pseudo-keyword long enough.
  
      - Stage 2 of the int/long integration (PEP 237).  This mostly
***************
*** 124,128 ****
      - Write a pymemcompat.h that people can bundle with their
        extensions and then use the 2.3 memory interface with all
!       Pythons in the range 1.5.2 to 2.3.  (Michael Hudson.)
  
      - PEP 262  Database of Installed Python Packages        Kuchling
--- 128,133 ----
      - Write a pymemcompat.h that people can bundle with their
        extensions and then use the 2.3 memory interface with all
!       Pythons in the range 1.5.2 to 2.3.  (Michael Hudson has done
!       this; it's in Misc/pymemcompat.h.)
  
      - PEP 262  Database of Installed Python Packages        Kuchling
***************
*** 141,145 ****
  
      - Warn when an extension type's tp_compare returns anything except
!       -1, 0 or 1.  http://www.python.org/sf/472523
  
      - A standard datetime type.  An implementation effort is under way:
--- 146,150 ----
  
      - Warn when an extension type's tp_compare returns anything except
!       -1, 0 or 1.  http://www.python.org/sf/472523  (This is done.)
  
      - A standard datetime type.  An implementation effort is under way:
***************
*** 153,161 ****
        http://mail.python.org/pipermail/python-dev/2002-April/023165.html
  
!     - Add a new concept, "silent deprecation", with associated warning
!       SilentDeprecationWarning.  This warning is normally suppressed,
!       but can be enabled by a suitable -W option.
  
!     - Use silent deprecation for the types and string modules.  This
        requires providing alternatives for the parts that aren't
        covered yet (e.g. string.whitespace and types.TracebackType).
--- 158,166 ----
        http://mail.python.org/pipermail/python-dev/2002-April/023165.html
  
!     - Add a new concept, "pending deprecation", with associated
!       warning PendingDeprecationWarning.  This warning is normally
!       suppressed, but can be enabled by a suitable -W option.
  
!     - Use pending deprecation for the types and string modules.  This
        requires providing alternatives for the parts that aren't
        covered yet (e.g. string.whitespace and types.TracebackType).