2000-07-13 02:33:08 -04:00
|
|
|
|
PEP: 200
|
|
|
|
|
Title: Python 2.0 Release Schedule
|
|
|
|
|
Version: $Revision$
|
2000-07-21 14:13:15 -04:00
|
|
|
|
Owner: Jeremy Hylton <jeremy@beopen.com>
|
2000-07-13 02:33:08 -04:00
|
|
|
|
Python-Version: 2.0
|
|
|
|
|
Status: Incomplete
|
|
|
|
|
|
2000-07-21 14:29:05 -04:00
|
|
|
|
|
2000-07-13 02:33:08 -04:00
|
|
|
|
Introduction
|
|
|
|
|
|
|
|
|
|
This PEP describes the Python 2.0 release schedule, tracking the
|
|
|
|
|
status and ownership of the major new features, summarizes
|
|
|
|
|
discussions held in mailing list forums, and provides URLs for
|
|
|
|
|
further information, patches, and other outstanding issues. The
|
|
|
|
|
CVS revision history of this file contains the definitive
|
|
|
|
|
historical record.
|
|
|
|
|
|
2000-08-15 01:58:29 -04:00
|
|
|
|
|
2000-07-25 10:11:19 -04:00
|
|
|
|
Tentative Release Schedule
|
|
|
|
|
|
2000-08-15 01:58:29 -04:00
|
|
|
|
14-Aug-2000: All 2.0 PEPs finished / feature freeze
|
|
|
|
|
28-Aug-2000: 2.0 beta 1
|
|
|
|
|
29-Sep-2000: 2.0 final
|
|
|
|
|
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
|
|
|
|
Guidelines for submitting patches and making changes
|
|
|
|
|
|
2000-07-26 00:12:42 -04:00
|
|
|
|
Use good sense when committing changes. You should know what we
|
|
|
|
|
mean by good sense or we wouldn't have given you commit privileges
|
|
|
|
|
<0.5 wink>. Some specific examples of good sense include:
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
|
|
|
|
- Do whatever the dictator tells you.
|
|
|
|
|
|
|
|
|
|
- Discuss any controversial changes on python-dev first. If you
|
2000-08-15 01:58:29 -04:00
|
|
|
|
get a lot of +1 votes and no -1 votes, make the change. If you
|
|
|
|
|
get a some -1 votes, think twice; consider asking Guido what he
|
|
|
|
|
thinks.
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
|
|
|
|
- If the change is to code you contributed, it probably makes
|
|
|
|
|
sense for you to fix it.
|
|
|
|
|
|
|
|
|
|
- If the change affects code someone else wrote, it probably makes
|
|
|
|
|
sense to ask him or her first.
|
|
|
|
|
|
|
|
|
|
- You can use the SF Patch Manager to submit a patch and assign it
|
|
|
|
|
to someone for review.
|
|
|
|
|
|
2000-07-26 00:12:42 -04:00
|
|
|
|
Any significant new feature must be described in a PEP and
|
|
|
|
|
approved before it is checked in.
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
2000-07-26 00:12:42 -04:00
|
|
|
|
Any significant code addition, such as a new module or large
|
|
|
|
|
patch, must include test cases for the regression test and
|
|
|
|
|
documentation. A patch should not be checked in until the tests
|
|
|
|
|
and documentation are ready.
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
2000-07-26 00:12:42 -04:00
|
|
|
|
If you fix a bug, you should write a test case that would have
|
|
|
|
|
caught the bug.
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
2000-07-26 00:12:42 -04:00
|
|
|
|
If you commit a patch from the SF Patch Manager or fix a bug from
|
|
|
|
|
the Jitterbug database, be sure to reference the patch/bug number
|
|
|
|
|
in the CVS log message. Also be sure to change the status in the
|
|
|
|
|
patch manager or bug database (if you have access to the bug
|
|
|
|
|
database).
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
2000-07-26 00:12:42 -04:00
|
|
|
|
It is not acceptable for any checked in code to cause the
|
|
|
|
|
regression test to fail. If a checkin causes a failure, it must
|
|
|
|
|
be fixed within 24 hours or it will be backed out.
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
2000-07-26 00:12:42 -04:00
|
|
|
|
All contributed C code must be ANSI C. If possible check it with
|
|
|
|
|
two different compilers, e.g. gcc and MSVC.
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
2000-07-26 00:12:42 -04:00
|
|
|
|
All contributed Python code must follow Guido's Python style
|
|
|
|
|
guide. http://www.python.org/doc/essays/styleguide.html
|
2000-07-25 10:11:19 -04:00
|
|
|
|
|
2000-07-26 00:12:42 -04:00
|
|
|
|
It is understood that any code contributed will be released under
|
|
|
|
|
an Open Source license. Do not contribute code if it can't be
|
|
|
|
|
released this way.
|
2000-07-21 14:29:05 -04:00
|
|
|
|
|
2000-08-15 01:58:29 -04:00
|
|
|
|
|
2000-07-26 23:03:39 -04:00
|
|
|
|
Failing test cases need to get fixed
|
|
|
|
|
|
|
|
|
|
We need to resolve errors in the regression test suite quickly.
|
|
|
|
|
Changes should not be committed to the CVS tree unless the
|
|
|
|
|
regression test runs cleanly with the changes applied. If it
|
|
|
|
|
fails, there may be bugs lurking in the code. (There may be bugs
|
|
|
|
|
anyway, but that's another matter.) If the test cases are known
|
|
|
|
|
to fail, they serve no useful purpose.
|
|
|
|
|
|
2000-08-15 01:58:29 -04:00
|
|
|
|
[what are the "R" and "B" columns supposed to mean? - tim]
|
|
|
|
|
|
|
|
|
|
test case platform R B date reported
|
2000-08-15 03:34:33 -04:00
|
|
|
|
--------- -------- - - -------------
|
2000-08-22 23:38:53 -04:00
|
|
|
|
test_parser Windows ? ? 22-Aug-2000
|
|
|
|
|
[probably all platforms]
|
|
|
|
|
|
|
|
|
|
test_posixpath Windows ? ? 22-Aug-2000
|
|
|
|
|
[probably all platforms; think it's because Skip backed out
|
|
|
|
|
commonpathprefix changes but didn't change the tests]
|
|
|
|
|
|
2000-08-20 01:59:27 -04:00
|
|
|
|
test_fork1 Linux X 26-Jul-2000 just SMP?
|
|
|
|
|
[no clue; there are probably two bugs here]
|
|
|
|
|
[19-Aug-200 tim
|
|
|
|
|
Charles Waldman whipped up a patch to give child processes a new
|
|
|
|
|
"global lock":
|
|
|
|
|
http://sourceforge.net/patch/?func=detailpatch&patch_id=101226&group_id=5470
|
|
|
|
|
While this doesn't appear to address the symptoms we *saw*, it
|
|
|
|
|
*does* so far appear to be fixing the failing cases anyway
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Previously failing test cases
|
|
|
|
|
|
|
|
|
|
If you find a test bouncing between this section and the previous one,
|
|
|
|
|
the code it's testing is in trouble!
|
|
|
|
|
|
|
|
|
|
test case platform R B date reported
|
|
|
|
|
--------- -------- - - -------------
|
2000-08-15 01:58:29 -04:00
|
|
|
|
test_popen2 Win32 X X 26-Jul-2000
|
2000-08-20 01:59:27 -04:00
|
|
|
|
[20-Aug-2000 tim
|
|
|
|
|
changed the popen2.py _test function to use the "more" cmd
|
|
|
|
|
when os.name == "nt". This makes test_popen2 pass under
|
|
|
|
|
Win98SE.
|
|
|
|
|
HOWEVER, the Win98 "more" invents a leading newline out
|
|
|
|
|
of thin air, and I'm not sure that the other Windows flavors
|
|
|
|
|
of "more" also do that.
|
|
|
|
|
So, somebody please try under other Windows flavors!
|
|
|
|
|
]
|
2000-08-15 01:58:29 -04:00
|
|
|
|
[still fails 15-Aug-2000 for me, on Win98 - tim
|
2000-08-15 03:34:33 -04:00
|
|
|
|
test test_popen2 crashed -- exceptions.AssertionError :
|
|
|
|
|
The problem is that the test uses "cat", but there is
|
|
|
|
|
no such thing under Windows (unless you install it).
|
|
|
|
|
So it's the test that's broken here, not (necessarily)
|
|
|
|
|
the code.
|
2000-08-15 01:58:29 -04:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
test_winreg Win32 X X 26-Jul-2000
|
|
|
|
|
[works 15-Aug-2000 for me, on Win98 - tim]
|
|
|
|
|
|
|
|
|
|
test_mmap Win32 X X 26-Jul-2000
|
|
|
|
|
[believe that was fixed by Mark H.]
|
|
|
|
|
[works 15-Aug-2000 for me, on Win98 - tim]
|
|
|
|
|
|
2000-08-18 00:25:33 -04:00
|
|
|
|
test_longexp Win98+? ? ? 15-Aug-2000
|
|
|
|
|
[fails in release build,
|
|
|
|
|
passes in release build under verbose mode but doesn't
|
|
|
|
|
look like it should pass,
|
|
|
|
|
passes in debug build,
|
|
|
|
|
passes in debug build under verbose mode and looks like
|
|
|
|
|
it should pass
|
|
|
|
|
]
|
|
|
|
|
[18-Aug-2000, tim: can't reproduce, and nobody else
|
|
|
|
|
saw it. I believe there *is* a subtle bug in
|
|
|
|
|
regrtest.py when using -v, and I'll pursue that,
|
|
|
|
|
but can't provoke anything wrong with test_longexp
|
|
|
|
|
anymore; eyeballing Fred's changes didn't turn up
|
|
|
|
|
a suspect either
|
2000-08-19 23:25:22 -04:00
|
|
|
|
19-Aug-2000, tim: the "subtle bug" in regrtest.py -v is
|
|
|
|
|
actually a feature: -v masks *some* kinds of failures,
|
|
|
|
|
since it doesn't compare test output with the canned
|
|
|
|
|
output; this is what makes it say "test passed" even
|
|
|
|
|
in some cases where the test fails without -v
|
2000-08-18 00:25:33 -04:00
|
|
|
|
]
|
|
|
|
|
|
2000-08-20 22:27:22 -04:00
|
|
|
|
test_winreg2 Win32 X X 26-Jul-2000
|
|
|
|
|
[20-Aug-2000 tim - the test has been removed from the project]
|
|
|
|
|
[19-Aug-2000 tim
|
|
|
|
|
This test will never work on Win98, because it's looking for
|
|
|
|
|
a part of registry that doesn't exist under W98.
|
|
|
|
|
The module (winreg.py) and this test case will be removed
|
|
|
|
|
before 2.0 for other reasons, though.
|
|
|
|
|
]
|
|
|
|
|
[still fails 15-Aug-2000 for me, on Win98 - tim
|
|
|
|
|
test test_winreg2 failed -- Writing: 'Test Failed: testHives',
|
|
|
|
|
expected: 'HKEY_PERFORMANCE_DATA\012'
|
|
|
|
|
]
|
|
|
|
|
|
2000-08-15 01:58:29 -04:00
|
|
|
|
|
2000-07-26 23:03:39 -04:00
|
|
|
|
Open items -- should be done/fixed
|
|
|
|
|
|
|
|
|
|
Decoding errors when comparing strings. There is a dictionary bug
|
|
|
|
|
that prevents objects from being accessible when an exception is
|
|
|
|
|
raised during hashing or comparison.
|
|
|
|
|
|
2000-08-18 00:25:33 -04:00
|
|
|
|
Decide what to do about os.path.commonprefix. Then do it.
|
2000-08-19 23:25:22 -04:00
|
|
|
|
[19-Aug-2000 tim
|
|
|
|
|
Guido msg on Python-Dev:
|
2000-08-22 00:42:19 -04:00
|
|
|
|
- restore the old behavior on all platforms - Skip volunteered for this
|
2000-08-19 23:25:22 -04:00
|
|
|
|
- add to the docs that to get the common directory you use dirname()
|
|
|
|
|
- add testcases that check that this works on all platforms
|
|
|
|
|
- don't add commonpathprefix(), because dirname() already does it
|
|
|
|
|
]
|
|
|
|
|
|
2000-08-22 00:42:19 -04:00
|
|
|
|
2.0b1: Get all patches out of Open.
|
|
|
|
|
|
|
|
|
|
2.0b1: Get all patches out of Accepted.
|
|
|
|
|
|
|
|
|
|
2.0b1: Decide on a license.
|
|
|
|
|
|
|
|
|
|
2.0b1 Windows: Look for registry info in HKCU before HKLM - Mark
|
|
|
|
|
Hammond.
|
|
|
|
|
|
|
|
|
|
2.0b1 Windows installer: If HKLM isn't writable, back off to HKCU (so
|
|
|
|
|
Python can be installed on NT & 2000 without admin privileges).
|
|
|
|
|
|
|
|
|
|
2.0b1 Windows installer: Install w9xpopen.exe only under Win95/98.
|
|
|
|
|
|
|
|
|
|
2.0b1 Windows ME: Don't know anything about it. Will the installer
|
|
|
|
|
even run? Does it need the w9xpopen hack?
|
|
|
|
|
|
|
|
|
|
2.0b1 Win98 Guido: popen is hanging on Guido, and even freezing the
|
|
|
|
|
whole machine. No clue yet.
|
|
|
|
|
|
|
|
|
|
2.0: Decide on a license.
|
|
|
|
|
|
|
|
|
|
2.0: Finish writing the PEPs for the features that went out
|
|
|
|
|
with 2.0b1(! sad, but realistic -- we'll get better with practice).
|
|
|
|
|
|
|
|
|
|
2.0: Major effort to whittle the bug database down to size. I've (tim)
|
|
|
|
|
seen this before: if you can keep all the open bugs fitting on one
|
|
|
|
|
screen, people will generally keep it that way. But let it slobber
|
|
|
|
|
over a screen for a month, & it just goes to hell (no "visible
|
|
|
|
|
progress" indeed!).
|
|
|
|
|
|
2000-08-20 22:27:22 -04:00
|
|
|
|
|
|
|
|
|
Open items -- completed/fixed
|
|
|
|
|
|
|
|
|
|
[20-Aug-2000 tim - done]
|
2000-08-19 23:25:22 -04:00
|
|
|
|
Remove winreg.py and test_winreg2.py. Paul Prescod (the author)
|
|
|
|
|
now wants to make a registry API more like the MS .NET API. Unclear
|
|
|
|
|
whether that can be done in time for 2.0, but, regardless, if we
|
|
|
|
|
let winreg.py out the door we'll be stuck with it forever, and not
|
|
|
|
|
even Paul wants it anymore.
|
2000-08-18 00:25:33 -04:00
|
|
|
|
|
2000-07-26 23:03:39 -04:00
|
|
|
|
|
2000-07-21 14:13:15 -04:00
|
|
|
|
Accepted and completed
|
|
|
|
|
|
2000-08-15 01:58:29 -04:00
|
|
|
|
* Lockstep iteration ("zip" function) - Barry Warsaw
|
|
|
|
|
|
|
|
|
|
* SRE - Fredrik Lundh
|
|
|
|
|
[at least I *think* it's done, as of 15-Aug-2000 - tim]
|
|
|
|
|
|
|
|
|
|
* Fix xrange printing behavior - Fred Drake
|
2000-08-18 16:26:47 -04:00
|
|
|
|
Remove the tp_print handler for the xrange type; it produced a
|
|
|
|
|
list display instead of 'xrange(...)'. The new code produces a
|
|
|
|
|
minimal call to xrange(), enclosed in (... * N) when N != 1.
|
|
|
|
|
This makes the repr() more human readable while making it do
|
|
|
|
|
what reprs are advertised as doing. It also makes the xrange
|
|
|
|
|
objects obvious when working in the interactive interpreter.
|
2000-08-15 01:58:29 -04:00
|
|
|
|
|
2000-08-22 00:42:19 -04:00
|
|
|
|
* Extended print statement - Barry Warsaw
|
|
|
|
|
PEP 214
|
|
|
|
|
http://python.sourceforge.net/peps/pep-0214.html
|
|
|
|
|
SF Patch #100970
|
|
|
|
|
http://sourceforge.net/patch/?func=detailpatch&patch_id=100970&group_id=5470
|
|
|
|
|
|
2000-07-21 14:29:05 -04:00
|
|
|
|
|
2000-07-21 14:13:15 -04:00
|
|
|
|
Accepted and in progress
|
|
|
|
|
|
|
|
|
|
* SyntaxError enhancements - Fredrik Lundh
|
|
|
|
|
http://www.python.org/pipermail/python-dev/2000-July/012981.html
|
|
|
|
|
|
|
|
|
|
* interface to poll system call - Andrew Kuchling
|
|
|
|
|
An OO interface to the poll system call will be added to the
|
|
|
|
|
select module.
|
|
|
|
|
|
|
|
|
|
* Compression of Unicode database - Fredrik Lundh
|
|
|
|
|
http://hem.passagen.se/eff/bot.htm#456806
|
|
|
|
|
|
2000-07-25 10:11:19 -04:00
|
|
|
|
* PyErr_SafeFormat / snprintf - owner???
|
2000-07-21 14:13:15 -04:00
|
|
|
|
Use snprintf to avoid buffer overflows. Need configure hackery
|
|
|
|
|
to discovery if it is available on the current platform and a
|
|
|
|
|
default implementation if it is not.
|
|
|
|
|
http://www.python.org/pipermail/python-dev/2000-April/010051.html
|
|
|
|
|
|
|
|
|
|
* Support for opcode arguments > 2**16 - Charles Waldman
|
|
|
|
|
Source files longer than 32K and sequences with more than 32K
|
|
|
|
|
elements both fail because opcode arguments are limited to
|
|
|
|
|
16-bit values.
|
|
|
|
|
|
|
|
|
|
* Range literals - Thomas Wouters
|
|
|
|
|
Make range(1, 10, 2) == [1:10:2]
|
|
|
|
|
|
2000-08-15 01:58:29 -04:00
|
|
|
|
* List comprehensions - Skip Montanaro (Tim Peters for PEP)
|
|
|
|
|
Need a coherent proposal. Lots of confusing discussion going
|
|
|
|
|
on.
|
|
|
|
|
[note: it's not confusing to Guido <wink> - tim]
|
2000-07-21 14:29:05 -04:00
|
|
|
|
|
2000-08-15 23:17:18 -04:00
|
|
|
|
* Augmented assignment - Thomas Wouters
|
|
|
|
|
Add += and family, plus Python and C hooks, and API functions.
|
|
|
|
|
|
2000-08-18 00:25:33 -04:00
|
|
|
|
* "import as" - Thomas Wouters
|
|
|
|
|
Extend the 'import' and 'from ... import' mechanism to enable
|
|
|
|
|
importing a symbol as another name. (Without adding a new keyword.)
|
|
|
|
|
|
|
|
|
|
* Merge __getitem__ and __getslice__ - Thomas Wouters
|
|
|
|
|
Move __getslice__ functionality into __getitem__, using slice objects,
|
|
|
|
|
for normal slices as well as for extended ones. First step: use
|
|
|
|
|
getitem if there is no getslice.
|
2000-07-21 14:13:15 -04:00
|
|
|
|
|
2000-08-22 00:42:19 -04:00
|
|
|
|
* Change meaning of \x escapes - PEP 223 - Fredrik Lundh? Tim Peters?
|
|
|
|
|
|
|
|
|
|
* Add \U1234678 escapes in u"" strings - Fredrik Lundh?
|
2000-08-19 23:25:22 -04:00
|
|
|
|
|
2000-08-18 00:25:33 -04:00
|
|
|
|
|
|
|
|
|
Open: proposed but not accepted or rejected
|
2000-08-07 13:04:27 -04:00
|
|
|
|
|
|
|
|
|
* Tim O'Malley's cookie module -- but need different license
|
|
|
|
|
|
2000-08-18 00:25:33 -04:00
|
|
|
|
* Extended slicing on lists - Michael Hudson
|
|
|
|
|
Make lists (and other builtin types) handle extended slices.
|
|
|
|
|
|
|
|
|
|
* Integrated gettext module - Barry Warsaw
|
|
|
|
|
wrapper around standard internationalization libraries
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Postponed
|
|
|
|
|
|
2000-07-21 14:13:15 -04:00
|
|
|
|
* Eliminated SET_LINENO opcode - Vladimir Marangozov
|
|
|
|
|
Small optimization achieved by using the code object's lnotab
|
|
|
|
|
instead of the SET_LINENO instruction. Uses code rewriting
|
2000-07-26 00:12:42 -04:00
|
|
|
|
technique (that Guido's frowns on) to support debugger, which
|
2000-07-21 14:13:15 -04:00
|
|
|
|
uses SET_LINENO.
|
|
|
|
|
|
|
|
|
|
http://starship.python.net/~vlad/lineno/
|
|
|
|
|
for (working at the time) patches
|
|
|
|
|
|
|
|
|
|
Discussions on python-dev:
|
|
|
|
|
|
|
|
|
|
- http://www.python.org/pipermail/python-dev/2000-April/subject.html
|
|
|
|
|
Subject: "Why do we need Traceback Objects?"
|
|
|
|
|
|
|
|
|
|
- http://www.python.org/pipermail/python-dev/1999-August/002252.html
|
|
|
|
|
|
2000-08-22 00:42:19 -04:00
|
|
|
|
* test harness for C code - Trent Mick
|
|
|
|
|
|
2000-08-15 03:47:12 -04:00
|
|
|
|
|
2000-08-18 00:25:33 -04:00
|
|
|
|
Rejected
|
2000-08-15 23:17:18 -04:00
|
|
|
|
|
2000-08-15 04:05:42 -04:00
|
|
|
|
* 'indexing-for' - Thomas Wouters
|
|
|
|
|
Special syntax to give Python code access to the loop-counter in 'for'
|
|
|
|
|
loops. (Without adding a new keyword.)
|
|
|
|
|
|
2000-07-21 14:13:15 -04:00
|
|
|
|
|
2000-07-13 02:33:08 -04:00
|
|
|
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
End:
|