[Python-checkins] python/nondist/peps pep-0283.txt,1.13,1.14
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
2002年8月09日 22:14:15 -0700
Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv10789
Modified Files:
pep-0283.txt
Log Message:
Status update.
Index: pep-0283.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0283.txt,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** pep-0283.txt 13 Jul 2002 14:00:04 -0000 1.13
--- pep-0283.txt 10 Aug 2002 05:14:13 -0000 1.14
***************
*** 16,23 ****
Bugs may be fixed until the final release.
! There is currently no defined schedule. We hope to release at
! least the first alpha before OSCON 2002, and the final release
! before the end of 2002, but if important projects below are
! delayed, the release may be delayed.
There will be at least two alpha releases, two beta releases, and
--- 16,22 ----
Bugs may be fixed until the final release.
! There is currently no defined schedule. We hope to do the final
! release before the end of 2002, but if important projects below
! are delayed, even that may be delayed.
There will be at least two alpha releases, two beta releases, and
***************
*** 66,87 ****
- PEP 273 Import Modules from Zip Archives Ahlstrom
! I think this is close -- maybe it's already checked in and I
! don't know about it!
- PEP 282 A Logging System Mick
! Vinay Sajip has been making steady progress on an
! implementation, and despite a recent near-flamewar (which I
! haven't followed) I expect that his code will be incorporated in
! the near future.
- PEP 263 Defining Python Source Code Encodings
! I'm all for this plan. I haven't reviewed the implementation.
- PEP 218 Adding a Built-In Set Object Type
I think it would be good to revive this in some form, using a
! module rather than a built-in type.
- A new command line option parser. Greg Ward's Optik
--- 65,87 ----
- PEP 273 Import Modules from Zip Archives Ahlstrom
! This project has been dormant too long. Somebody wake it up!
! http://www.python.org/sf/492105
- PEP 282 A Logging System Mick
! Vinay Sajip's implementation is close to completion IMO. I
! expect that his code will be incorporated in the near future.
! http://www.python.org/sf/578494
- PEP 263 Defining Python Source Code Encodings
! Implemented (at least phase 1, which is all that's planned for
! 2.3).
- PEP 218 Adding a Built-In Set Object Type
I think it would be good to revive this in some form, using a
! module rather than a built-in type. Alex Martelli has
! contributed a new version: http://www.python.org/sf/580995
- A new command line option parser. Greg Ward's Optik
***************
*** 93,101 ****
Skip Montanaro has posted a proto-PEP for this idea:
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?
--- 93,100 ----
Skip Montanaro has posted a proto-PEP for this idea:
http://mail.python.org/pipermail/python-dev/2002-May/024346.html
+ Unfortunately there hasn't been much progress on this.
! - Extended slice notation for all built-in sequences. Completed:
! patch by Michael Hudson is now all checked in.
- An iterator tools module featuring goodies from SML and Haskell?
***************
*** 103,120 ****
- Speed up list iterations by filling tp_iter and other tweaks?
! http://www.python.org/sf/560736 (This is done; also for xrange.)
- Deprecate the buffer object.
http://mail.python.org/pipermail/python-dev/2002-July/026388.html
http://mail.python.org/pipermail/python-dev/2002-July/026408.html
- Lazily tracking tuples?
http://mail.python.org/pipermail/python-dev/2002-May/023926.html
http://www.python.org/sf/558745
! - 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
--- 102,122 ----
- Speed up list iterations by filling tp_iter and other tweaks?
! http://www.python.org/sf/560736 (This is done; also for xrange
! and tuple objects.)
- Deprecate the buffer object.
http://mail.python.org/pipermail/python-dev/2002-July/026388.html
http://mail.python.org/pipermail/python-dev/2002-July/026408.html
+ No progress; the last time this was brought up only Marc-Andre
+ Lemburg said he had a use for it. I need to find out exactly
+ what that need is and how much of the buffer object we can retire.
- Lazily tracking tuples?
http://mail.python.org/pipermail/python-dev/2002-May/023926.html
http://www.python.org/sf/558745
+ Not much enthusiasm I believe.
! - Timeout sockets. Completed.
! http://www.python.org/sf/555085
- Making None a keyword. Can't be done right away, but a warning
***************
*** 134,138 ****
- Nuke SET_LINENO from all code objects (providing a different way
to set debugger breakpoints). This can boost pystone by >5%.
! (Tim Peters.)
- Write a pymemcompat.h that people can bundle with their
--- 136,140 ----
- Nuke SET_LINENO from all code objects (providing a different way
to set debugger breakpoints). This can boost pystone by >5%.
! http://www.python.org/sf/587993 awaiting review.
- Write a pymemcompat.h that people can bundle with their