Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 1 | Sorry, this list does not claim completeness. If I fixed a bug |
| 2 | immediately upon receiving the first complaint I usually did not |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 3 | nother to make an entry in this file, unless it was a serious bug |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 4 | (core dump or infinite loop). |
| 5 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 6 | ==> Status indicators: (-) not fixed; (*) fixed; (?) don't know what to do. |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 7 | |
| 8 | ====================================================================== |
Guido van Rossum | 9444ce0 | 1994-10-20 22:10:23 +0000 | [diff] [blame] | 9 | BUGS found in 1.1 and fixed in 1.1.1 |
| 10 | ------------------------------------ |
| 11 | |
Guido van Rossum | 5dee5e7 | 1994-11-10 23:06:54 +0000 | [diff] [blame] | 12 | (*) printing name of lambda in traceback dereferences NULL |
| 13 | |
| 14 | (*) A built-in function using getargs() and expecting >= 1 argument |
| 15 | may dump core when called without arguments |
| 16 | |
| 17 | (*) newgetargs() dumps core in compat mode when NULL is passed in but |
| 18 | max is >0 |
| 19 | |
Guido van Rossum | 9444ce0 | 1994-10-20 22:10:23 +0000 | [diff] [blame] | 20 | (*) pow() should be declared varargs since it uses newgetargs |
| 21 | |
Guido van Rossum | 5dee5e7 | 1994-11-10 23:06:54 +0000 | [diff] [blame] | 22 | (*) newmodule.c doesn't compile on SunOS 4.1.3 due to non-K&R backslashes |
| 23 | |
| 24 | (*) some typos in tut.tex |
| 25 | |
| 26 | (*) test for broken static forward is not strong enough |
| 27 | |
| 28 | (*) Doc/Makefile assumes . is in $PATH in call to whichlibs |
| 29 | |
| 30 | (*) math module misses hypot() function |
| 31 | |
| 32 | (*) structmember.h should include stddef.h (for offsetof macro) |
| 33 | |
| 34 | (*) gdbmmodule.c frees the wrong structures |
| 35 | |
| 36 | (*) makesetup script misses some dollars and backslashes |
| 37 | |
| 38 | (*) getargs.obj missing from NT makefile |
| 39 | |
| 40 | (*) sorting class instances broken if no __cmp__ defined |
| 41 | |
Guido van Rossum | 9444ce0 | 1994-10-20 22:10:23 +0000 | [diff] [blame] | 42 | BUGS found in 1.1 and not yet fixed |
| 43 | ----------------------------------- |
| 44 | |
Guido van Rossum | 5dee5e7 | 1994-11-10 23:06:54 +0000 | [diff] [blame] | 45 | (-) HP doesn't compile out of the box (needs LIBS=-ldld or |
| 46 | LIBS=/usr/lib/libdld.sl) |
Guido van Rossum | 9444ce0 | 1994-10-20 22:10:23 +0000 | [diff] [blame] | 47 | |
Guido van Rossum | 5dee5e7 | 1994-11-10 23:06:54 +0000 | [diff] [blame] | 48 | (-) something fishy with softspace and print_error (flushline clears |
| 49 | the error) |
| 50 | |
| 51 | (-) tkinter doesn't seem to see any declaration of malloc on sunos 4.1.3 |
| 52 | |
| 53 | ====================================================================== |
Guido van Rossum | 9444ce0 | 1994-10-20 22:10:23 +0000 | [diff] [blame] | 54 | BUGS found in 1.0.3 and fixed in 1.1 |
| 55 | ------------------------------------ |
| 56 | |
Guido van Rossum | 9444ce0 | 1994-10-20 22:10:23 +0000 | [diff] [blame] | 57 | (*) If class C doesn't define __cmp__, cmp(a,b) will return -2 and |
| 58 | [a,b].sort() will fail |
| 59 | |
Guido van Rossum | 2b11c61 | 1994-10-06 16:36:15 +0000 | [diff] [blame] | 60 | (*) Syntax errors are reported in a silly way if multi-line tokens are |
Guido van Rossum | fda5fb2 | 1994-08-12 13:18:41 +0000 | [diff] [blame] | 61 | involved. |
| 62 | |
Guido van Rossum | 2b11c61 | 1994-10-06 16:36:15 +0000 | [diff] [blame] | 63 | (*) SyntaxError exception for compile('...') are reported wrongly |
Guido van Rossum | fda5fb2 | 1994-08-12 13:18:41 +0000 | [diff] [blame] | 64 | (lineno is always zero and offset is offset into the whole string). |
| 65 | |
Guido van Rossum | 2b11c61 | 1994-10-06 16:36:15 +0000 | [diff] [blame] | 66 | (*) freeze script needs major rewrite to cope with multiple extensions |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 67 | (Jack seems to have fixed it now -- where is it?) |
| 68 | |
Guido van Rossum | 2b11c61 | 1994-10-06 16:36:15 +0000 | [diff] [blame] | 69 | (*) various memory leaks (see purify report from anthony.baxter@aaii.oz.au) |
| 70 | (several leaks fixed anyway :-) |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 71 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 72 | (*) unwanted entries in stack trace if err_clear() clears an error |
| 73 | that also set a stack trace |
| 74 | |
| 75 | (*) i, x[i] = a, b assigns b to x[a] rather than to x[i] as expected |
| 76 | (documented with a warning in ref6.tex!) |
| 77 | |
| 78 | (*) etags no longer supports -t flag |
| 79 | |
| 80 | (*) compile.c:com_argdefs() references unalloc'ed memory for def |
| 81 | f(a=1,): ... |
| 82 | |
| 83 | (*) If you have a python binary in your path like |
Guido van Rossum | fda5fb2 | 1994-08-12 13:18:41 +0000 | [diff] [blame] | 84 | /ufs/guido/bin/sgi/python then the default prefix option computed by |
| 85 | the configure script is bogus! |
| 86 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 87 | (*) Make rule for making lib*.a should remove the lib*.a file first. |
Guido van Rossum | fda5fb2 | 1994-08-12 13:18:41 +0000 | [diff] [blame] | 88 | |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 89 | (*) vars() error message is wrong (copied from dir() obviously). |
| 90 | |
| 91 | (*) socket.gethostname() is undocumented. |
| 92 | |
| 93 | (*) rfc822.py: getfirst* dies when multiple headers occur |
| 94 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 95 | (*) urllib caching is wrong (should use date from Expires header) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 96 | |
| 97 | (*) On a related matter: regexpr.c still has two malloc()s the results |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 98 | of which are not tested for being NULL (lines 1253 and 1530). There |
| 99 | are also some in rgbimagemodule.c. Am I overlooking something or is |
Guido van Rossum | fda5fb2 | 1994-08-12 13:18:41 +0000 | [diff] [blame] | 100 | this a crasher? |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 101 | |
| 102 | (*) strop.rindex('abc', '') returns 0 instead of 3 |
| 103 | |
| 104 | (*) sunaudiodevmodule.o is too long! |
| 105 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 106 | (*) toplevel README needs new text on PC and Mac builds |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 107 | |
| 108 | (*) long(0x80000000) has wrong value! |
| 109 | |
| 110 | ====================================================================== |
| 111 | Bugs found in 1.0.2 and not yet fixed |
| 112 | ------------------------------------- |
| 113 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 114 | (?) compiler warnings about argument type of uname() on ULTRIX |
| 115 | machines (don't know what to do about it) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 116 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 117 | (?) syntax error for interactive input prints garbage instead of last |
| 118 | source line on some systems (e.g. AIX) (impossible to test/reproduce) |
| 119 | !!! I think I've found this one -- a missing INCREF in print_error! |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 120 | |
| 121 | (?) (maybe) a bad .pyc file (with old magic number) causes the .py |
| 122 | file to be ignored |
| 123 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 124 | (?) Sunos4.0.2 / 386 configure bugs: |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 125 | - timelocal instead of mktime |
| 126 | - unistd.h doesn't declare some functions |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 127 | (don't know what to do about this) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 128 | |
| 129 | Bugs found in 1.0.2 and fixed in 1.0.3 |
| 130 | -------------------------------------- |
| 131 | |
| 132 | (*) nasty bug in string formatting (see test_types.py, search for %) |
| 133 | |
| 134 | (*) if a triple-quoted string ends in a quote followed by a newline |
| 135 | (followed immediately by the terminating 3 quotes) then a syntax error |
| 136 | or system error ensues |
| 137 | |
| 138 | (*) bug in socket.listen: clipping backlog to >= 1 doesn't work |
| 139 | |
| 140 | (*) two bogus XDEL's in Modules/regexmodule.reg_dealloc() |
| 141 | |
| 142 | (*) Parser/myreadline.my_fgets: #endif EINTR misplaced |
| 143 | |
| 144 | (*) new IP address for ftp.cwi.nl !!! |
| 145 | |
| 146 | (*) typing vars() to interactive prompt runs into infinite loop |
| 147 | because of '_' |
| 148 | |
| 149 | (*) tokenizer/tok_nextc() runs into infinite loop when file does not |
| 150 | end in linefeed |
| 151 | |
| 152 | (*) Sunos4.0.2 / 386 configure bugs: |
| 153 | (*) - use size_t at some places without including sys/types.h |
| 154 | (*) - missing clock_t |
| 155 | (*) - uses SEEK_SET in some places that don't include unistd.h |
| 156 | |
| 157 | ====================================================================== |
| 158 | Bugs found in 1.0.1 and not yet fixed |
| 159 | ------------------------------------- |
| 160 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 161 | (?) modsupport.c(vmkvalue): on systems where va_list is an array, the |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 162 | calls to do_mkvalue and do_mktuple don't want an "&" before va. |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 163 | (don't know what to do about this) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 164 | |
| 165 | (?) threads are slow on Solaris 2 |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 166 | (so what?) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 167 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 168 | (*) threads cause myreadline.c's readline() to think it sees an EOF. |
| 169 | (I *think* I've fixed this, by testing for EINTR) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 170 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 171 | (?) min() on PC version generates wrong result (i.e. same as max()) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 172 | [this happens on SoftPC -- don't know about other systems] |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 173 | (can't find the reason -- may be SoftPC bug) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 174 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 175 | (*) flp.py cache bug: if the cache only contains one form, asking for |
| 176 | all forms returns only the cached form |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 177 | |
| 178 | Bugs found in 1.0.1 and fixed in 1.0.2 |
| 179 | -------------------------------------- |
| 180 | |
| 181 | (*) core dump when parser.parsefile() called |
| 182 | |
| 183 | (*) man page contains a mess before -d option |
| 184 | |
| 185 | (*) threads don't work on IRIX 4 |
| 186 | |
| 187 | (*) wrong cast of svideo_getattr in svmodule.c |
| 188 | |
| 189 | (*) bad return value in runpython.c's run_tty_1() |
| 190 | |
| 191 | (*) creating dict of 100,000 objects gets MemoryError or dumps core |
| 192 | |
| 193 | (*) freeze script doesn't work |
| 194 | |
| 195 | ====================================================================== |
| 196 | BUGS found in 1.0.0 and not yet fixed |
| 197 | ------------------------------------- |
| 198 | |
| 199 | (?) On NeXT, need to define _POSIX_SOURCE. |
| 200 | |
| 201 | (?) there appears to be something wrong with gcc and -ldl on some |
| 202 | SunOS 4.1.3 systems |
| 203 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 204 | (?) jredfords reports core dump with float literals |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 205 | |
| 206 | BUGS found in 1.0.0 and fixed in 1.0.1 |
| 207 | -------------------------------------- |
| 208 | |
| 209 | (*) On SGI IRIX 4 using cc, compilation errors in md5module.c. |
| 210 | |
| 211 | (*) In cdmodule.c, getattr initialized with (destructor)! |
| 212 | |
| 213 | (*) Lib/tzparse.py runs test() on import |
| 214 | |
| 215 | (*) Lib/filewin.py belongs in Lib/stdwin |
| 216 | |
| 217 | (*) lib and man install targets don't use $(srcdir) |
| 218 | |
| 219 | (*) Modules/rgbimgmodule.c: exception name contains comma instead of dot |
| 220 | |
| 221 | (*) The FAQ still references misc/EXTENDING and misc/DYNLOAD etc |
| 222 | |
| 223 | (*) The FAQ still describes how to work around a problem in 0.9.9 exec() |
| 224 | |
| 225 | (*) Lib/aifc.py, returns float rate, should be int |
| 226 | |
| 227 | (*) Lib/sunau.py, incorrectly cumputes byte count from frame rate |
| 228 | |
| 229 | (*) README should mention possibility of passing OPT=-g to make |
| 230 | |
| 231 | (*) dynamic loading on sunos 4.1.3 must call dlopen(..., 1) |
| 232 | |
| 233 | (*) use of <varargs.h> vs. <stdarg.h> should depend on |
| 234 | HAVE_STDARG_PROTOTYPES, not on HAVE_STDARG_H |
| 235 | |
| 236 | (*) Doc/README refers to Misc/FTP which in fact does not exist any more |
| 237 | |
| 238 | (*) filter(None, 'abcdefg') dumps core |
| 239 | |
| 240 | (*) once you interrupt time.sleep(), there is no interrupt handler! |
| 241 | |
| 242 | ====================================================================== |
| 243 | end of file |