summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-10-25 14:25:31 (GMT)
committerGuido van Rossum <guido@python.org>1996-10-25 14:25:31 (GMT)
commit819889dd0d789566473df6ff77efa35db5fd017f (patch)
treef4fc1fd2618c25ac63296e4af06aac92940ea522
parent7704bb7f326026067e44f9b1396dccd54bc581cf (diff)
downloadcpython-819889dd0d789566473df6ff77efa35db5fd017f.zip
cpython-819889dd0d789566473df6ff77efa35db5fd017f.tar.gz
cpython-819889dd0d789566473df6ff77efa35db5fd017f.tar.bz2
Noticed a few more things that have been done.
-rw-r--r--TODO55
1 files changed, 28 insertions, 27 deletions
diff --git a/TODO b/TODO
index 8615e27..fe091cb 100644
--- a/TODO
+++ b/TODO
@@ -3,27 +3,15 @@ Things to do before releasing Pyton 1.4 the final cut:
Win/NT specific things:
-... get bsddb.c patch
-
... pyc files remain open when imported???
-(*) no trailing separator on sys.path[0] please
-
... no control-c or control-break in Windows Console mode???
- (implement Mark's hacks)
-
-... add PC template for extensions, + instructions
-
-... segv on NT after ^Z after import _tkinter
+ (implement Mark's hacks) (seems to work now?)
Bugs:
-... apply(<class>, (), {}) fails while apply(<class>, ()) succeeds
-
... exception in __del__ when __builtins__ has been deleted
-(*) core dump on complex % or divmod
-
Features:
... simple threading support (with lock) for Tk
@@ -34,20 +22,10 @@ Documentation:
... Add section on filesystem interface to tutorial
-... New last chapter of tutorial explaining new things (use NEWS file)
-
... Update tutorial for changes in the language & library
-... Update reference manual for complex, power, slice and ellipses
-
... New sections for library reference manual (use NEWS file for hints)
-... Update Misc/FAQ
-
-... Update README for 1.4 final cut
-
-... Update documentation for httplib
-
... add stuff to ext.tex about threads and embedded Python
... mention that -2147483648 doesn't work
@@ -56,8 +34,6 @@ Documentation:
Maybe not (yet):
-... SyntaxErrors w/o line numbers
-
... get rid of 'owner' passed around for newframeobject and evalcode
... Get freeze working for NT? (Sam has one)
@@ -78,8 +54,6 @@ Maybe not (yet):
... More thread testing (Solaris?), wait for David Arnold
-... More NeXT patches (Bill Bumgarner)
-
... Get rid of more modules: (stdwin, soundex, SGI specific?)
... Use autoconf features to find X11 libraries
@@ -88,6 +62,33 @@ Maybe not (yet):
Done:
+(*) get bsddb.c patch
+
+(*) no trailing separator on sys.path[0] please
+
+(*) add PC template for extensions, + instructions
+
+(*) segv on NT after ^Z after import _tkinter
+
+(*) apply(<class>, (), {}) fails while apply(<class>, ()) succeeds
+ if class has no __init__ method
+
+(*) core dump on complex % or divmod
+
+(*) New last chapter of tutorial explaining new things (use NEWS file)
+
+(*) Update reference manual for complex, power, slice and ellipses
+
+(*) Update Misc/FAQ
+
+(*) Update README for 1.4 final cut
+
+(*) Update documentation for httplib
+
+(*) SyntaxErrors w/o line numbers
+
+(*) More NeXT patches (Bill Bumgarner, Lele Gaifax)
+
(*) fix file upload in cgi.py from Netscape
(*) Tkinter.Variable.__del__ may cause (ignored) exceptions