b3 is out, update schedule to current, best guess. some bugs have been fixed. add new unicode issue

This commit is contained in:
Neal Norwitz 2006-08-04 05:25:40 +00:00
parent a4e8b1d4e0
commit 9458841166
1 changed files with 8 additions and 21 deletions

View File

@ -36,9 +36,9 @@ Release Schedule
alpha 2: April 27, 2006 [completed]
beta 1: June 20, 2006 [completed]
beta 2: July 11, 2006 [completed]
beta 3: August 1, 2006 [planned]
rc 1: August ??, 2006 [planned]
final: August ??, 2006 [planned]
beta 3: August 3, 2006 [completed]
rc 1: August 18, 2006 [planned]
final: September 12, 2006 [planned]
Completed features for 2.5
@ -147,35 +147,22 @@ Deferred until 2.6:
Open issues
- Bugs that need resolving before release, ie, they block release:
http://python.org/sf/1530559 - struct rejecting floats
http://python.org/sf/1333982 - AST
http://python.org/sf/1191458 - AST (test_trace issue mentioned below)
http://python.org/sf/1530559 - struct rejecting floats (patch pending)
http://mail.python.org/pipermail/python-dev/2006-July/067774.html
Problem with __index__
Problem with __index__ (patch pending)
http://mail.python.org/pipermail/python-dev/2006-August/067926.html
str/unicode dict keys can raise an exception
- Bugs that ought to be resolved before release (all exist in 2.4):
http://python.org/sf/1526585 - SystemError concat long strings
http://python.org/sf/1523610 - PyArg_ParseTupleAndKeywords potential
core dump
http://python.org/sf/1519025 - socket timeout crash when receive signal
http://python.org/sf/1517042 - Fix crashers/gc_inspection.py
http://python.org/sf/1475523 - gettext.py bug (owner: Martin v. Loewis)
http://python.org/sf/1467929 - %-formatting and dicts
- AST compiler problems
(Owner: Jeremy Hylton)
* string constants that are not assigned are in byte code
def foo():
"docstring"
"not a docstring"
the constant (not a docstring) should not be stored in co_consts
* test_trace tests that were commented out for AST must be fixed
only test_05_no_pop_tops remains outstanding
(Owner: Jeremy Hylton)
http://python.org/sf/1191458
- The PEP 302 changes to (at least) pkgutil, runpy and pydoc must be
documented.