move os.path.commonprefix from open to completed
split open items into 2.0b1 and 2.0 sections
This commit is contained in:
parent
36c21a67e3
commit
3ce63ea9e9
53
pep-0200.txt
53
pep-0200.txt
|
@ -173,51 +173,43 @@ Previously failing test cases
|
|||
]
|
||||
|
||||
|
||||
Open items -- should be done/fixed
|
||||
Open items -- Need to be resolved before 2.0b1 release
|
||||
|
||||
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.
|
||||
Fix bug 112558
|
||||
https://sourceforge.net/bugs/?func=detailbug&bug_id=112558&group_id=5470
|
||||
|
||||
Decide what to do about os.path.commonprefix. Then do it.
|
||||
[19-Aug-2000 tim
|
||||
Guido msg on Python-Dev:
|
||||
- restore the old behavior on all platforms - Skip volunteered for this
|
||||
- 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
|
||||
]
|
||||
Get all patches out of Open.
|
||||
|
||||
2.0b1: Get all patches out of Open.
|
||||
Get all patches out of Accepted.
|
||||
|
||||
2.0b1: Get all patches out of Accepted.
|
||||
Decide on a license.
|
||||
|
||||
2.0b1: Decide on a license.
|
||||
|
||||
2.0b1 Windows: Look for registry info in HKCU before HKLM - Mark
|
||||
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
|
||||
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.
|
||||
Windows installer: Install w9xpopen.exe only under Win95/98.
|
||||
|
||||
2.0b1 Windows ME: Don't know anything about it. Will the installer
|
||||
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
|
||||
Win98 Guido: popen is hanging on Guido, and even freezing the
|
||||
whole machine. No clue yet.
|
||||
|
||||
2.0: Decide on a license.
|
||||
Open items -- Need to be resolved before 2.0 final release
|
||||
|
||||
2.0: Finish writing the PEPs for the features that went out
|
||||
with 2.0b1(! sad, but realistic -- we'll get better with practice).
|
||||
Decide on a license.
|
||||
|
||||
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!).
|
||||
Finish writing the PEPs for the features that went out with
|
||||
2.0b1(! sad, but realistic -- we'll get better with practice).
|
||||
|
||||
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!).
|
||||
|
||||
|
||||
Open items -- completed/fixed
|
||||
|
@ -232,6 +224,9 @@ Open items -- completed/fixed
|
|||
|
||||
Accepted and completed
|
||||
|
||||
* Restore old os.path.commonprefix behavior
|
||||
Do we have test cases that work on all platforms?
|
||||
|
||||
* Lockstep iteration ("zip" function) - Barry Warsaw
|
||||
|
||||
* SRE - Fredrik Lundh
|
||||
|
|
Loading…
Reference in New Issue