[Python-checkins] python/nondist/peps pep-0283.txt,1.34,1.35

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Fri, 25 Apr 2003 12:22:28 -0700


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1:/tmp/cvs-serv3877

Modified Files:
	pep-0283.txt 
Log Message:
- updates to reflect the current state of affairs
- small typo fixes


Index: pep-0283.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0283.txt,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** pep-0283.txt	25 Apr 2003 19:04:27 -0000	1.34
--- pep-0283.txt	25 Apr 2003 19:22:25 -0000	1.35
***************
*** 117,121 ****
  
      - A new command line option parser.  Greg Ward's Optik package
!       (http://optik.sf.net) has been adopted, convert to a single
        module named optparse.  See also
        http://www.python.org/sigs/getopt-sig/
--- 117,121 ----
  
      - A new command line option parser.  Greg Ward's Optik package
!       (http://optik.sf.net) has been adopted, converted to a single
        module named optparse.  See also
        http://www.python.org/sigs/getopt-sig/
***************
*** 124,130 ****
        http://www.zope.org/Members/fdrake/DateTimeWiki/FrontPage .  A
        prototype was coded in nondist/sandbox/datetime/.  Tim Peters
!       has finished the C implementation and checked it in.  While we
!       may be tweaking the API during the alpha test period, I consider
!       this module basically complete -- except for its documentation.
  
      - PEP 273  Import Modules from Zip Archives             Ahlstrom
--- 124,128 ----
        http://www.zope.org/Members/fdrake/DateTimeWiki/FrontPage .  A
        prototype was coded in nondist/sandbox/datetime/.  Tim Peters
!       has finished the C implementation and checked it in.
  
      - PEP 273  Import Modules from Zip Archives             Ahlstrom
***************
*** 140,147 ****
  
      - PEP 305 (CSV File API, by Skip Montanaro et al.) is in; this is
!       the csv package.
  
      - Raymond Hettinger's itertools module is in.
  
  
  Planned features for 2.3
--- 138,153 ----
  
      - PEP 305 (CSV File API, by Skip Montanaro et al.) is in; this is
!       the csv module.
  
      - Raymond Hettinger's itertools module is in.
  
+     - PEP 311 (Simplified GIL Acquisition for Extensions, by Mark
+       Hammond) has been included in beta 1.
+ 
+     - A new PyArg_Parse*() format code that returns an unsigned C long
+       int that receives the lower LONG_BIT bits of the Python
+       argument, truncating without range checking.  (SF 595026; Thomas
+       Heller did this work.)
+ 
  
  Planned features for 2.3
***************
*** 159,172 ****
        project (http://idlefork.sf.net).
  
-     - We need a new PyArg_Parse*() format code that returns an
-       unsigned C long int that receives the lower LONG_BIT bits of the
-       Python argument, truncating without range checking.  (SF
-       595026; Thomas Heller is working on this.)
- 
      - The import lock could use some redesign.  (SF 683658.)
  
-     - PEP 311 (Simplified GIL Acquisition for Extensions, by Mark
-       Hammond) is expected to go into beta 1.
- 
  
  Ongoing tasks
--- 165,170 ----
***************
*** 181,185 ****
        classes.
  
!     - Look over the Demos/ directory and update where required.
  
      - New tests.
--- 179,184 ----
        classes.
  
!     - Look over the Demos/ directory and update where required (Andrew
!       Kuchling has done a lot of this)
  
      - New tests.