diff options
author | Guido van Rossum <guido@python.org> | 1994-10-20 22:10:23 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-10-20 22:10:23 (GMT) |
commit | 9444ce0b4173a6aef184b6962bdd274d90065779 (patch) | |
tree | 8251ab193875508605ea8c2da3fb70e8f68a5366 /BUGS | |
parent | 2bcafeb6453c1b54e55bc4a85951298d4b594bda (diff) | |
download | cpython-9444ce0b4173a6aef184b6962bdd274d90065779.zip cpython-9444ce0b4173a6aef184b6962bdd274d90065779.tar.gz cpython-9444ce0b4173a6aef184b6962bdd274d90065779.tar.bz2 |
the usual
Diffstat (limited to 'BUGS')
-rw-r--r-- | BUGS | 24 |
1 files changed, 21 insertions, 3 deletions
@@ -6,12 +6,33 @@ nother to make an entry in this file, unless it was a serious bug ==> Status indicators: (-) not fixed; (*) fixed; (?) don't know what to do. ====================================================================== +BUGS found in 1.1 and fixed in 1.1.1 +------------------------------------ + +(*) pow() should be declared varargs since it uses newgetargs + +BUGS found in 1.1 and not yet fixed +----------------------------------- + +(-) A built-in function using getargs() and expecting >= 1 argument +may dump core when called without arguments + +BUGS found in 1.0.3 and fixed in 1.1 +------------------------------------ + + +(*) If class C doesn't define __cmp__, cmp(a,b) will return -2 and +[a,b].sort() will fail + BUGS found in 1.0.3 and not yet fixed ------------------------------------- (-) print_error raises and then masks an error if softspace is not defined (can't reproduce this one?) +BUGS found in 1.0.3 and fixed in 1.1 +------------------------------------ + (*) Syntax errors are reported in a silly way if multi-line tokens are involved. @@ -24,9 +45,6 @@ involved. (*) various memory leaks (see purify report from anthony.baxter@aaii.oz.au) (several leaks fixed anyway :-) -BUGS found in 1.0.3 and fixed in 1.1 ------------------------------------- - (*) unwanted entries in stack trace if err_clear() clears an error that also set a stack trace |