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 | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 9 | BUGS found in 1.0.3 and not yet fixed |
| 10 | ------------------------------------- |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 11 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 12 | (-) print_error raises and then masks an error if softspace is not |
| 13 | defined |
Guido van Rossum | fda5fb2 | 1994-08-12 13:18:41 +0000 | [diff] [blame] | 14 | |
| 15 | (-) Syntax errors are reported in a silly way if multi-line tokens are |
| 16 | involved. |
| 17 | |
| 18 | (-) SyntaxError exception for compile('...') are reported wrongly |
| 19 | (lineno is always zero and offset is offset into the whole string). |
| 20 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 21 | (-) freeze script needs major rewrite to cope with multiple extensions |
| 22 | (Jack seems to have fixed it now -- where is it?) |
| 23 | |
| 24 | (?) various memory leaks (see purify report from anthony.baxter@aaii.oz.au) |
| 25 | |
| 26 | BUGS found in 1.0.3 and fixed in 1.1 |
| 27 | ------------------------------------ |
| 28 | |
| 29 | (*) unwanted entries in stack trace if err_clear() clears an error |
| 30 | that also set a stack trace |
| 31 | |
| 32 | (*) i, x[i] = a, b assigns b to x[a] rather than to x[i] as expected |
| 33 | (documented with a warning in ref6.tex!) |
| 34 | |
| 35 | (*) etags no longer supports -t flag |
| 36 | |
| 37 | (*) compile.c:com_argdefs() references unalloc'ed memory for def |
| 38 | f(a=1,): ... |
| 39 | |
| 40 | (*) If you have a python binary in your path like |
Guido van Rossum | fda5fb2 | 1994-08-12 13:18:41 +0000 | [diff] [blame] | 41 | /ufs/guido/bin/sgi/python then the default prefix option computed by |
| 42 | the configure script is bogus! |
| 43 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 44 | (*) 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] | 45 | |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 46 | (*) vars() error message is wrong (copied from dir() obviously). |
| 47 | |
| 48 | (*) socket.gethostname() is undocumented. |
| 49 | |
| 50 | (*) rfc822.py: getfirst* dies when multiple headers occur |
| 51 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 52 | (*) urllib caching is wrong (should use date from Expires header) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 53 | |
| 54 | (*) 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] | 55 | of which are not tested for being NULL (lines 1253 and 1530). There |
| 56 | 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] | 57 | this a crasher? |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 58 | |
| 59 | (*) strop.rindex('abc', '') returns 0 instead of 3 |
| 60 | |
| 61 | (*) sunaudiodevmodule.o is too long! |
| 62 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 63 | (*) toplevel README needs new text on PC and Mac builds |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 64 | |
| 65 | (*) long(0x80000000) has wrong value! |
| 66 | |
| 67 | ====================================================================== |
| 68 | Bugs found in 1.0.2 and not yet fixed |
| 69 | ------------------------------------- |
| 70 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 71 | (?) compiler warnings about argument type of uname() on ULTRIX |
| 72 | machines (don't know what to do about it) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 73 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 74 | (?) syntax error for interactive input prints garbage instead of last |
| 75 | source line on some systems (e.g. AIX) (impossible to test/reproduce) |
| 76 | !!! 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] | 77 | |
| 78 | (?) (maybe) a bad .pyc file (with old magic number) causes the .py |
| 79 | file to be ignored |
| 80 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 81 | (?) Sunos4.0.2 / 386 configure bugs: |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 82 | - timelocal instead of mktime |
| 83 | - unistd.h doesn't declare some functions |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 84 | (don't know what to do about this) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 85 | |
| 86 | Bugs found in 1.0.2 and fixed in 1.0.3 |
| 87 | -------------------------------------- |
| 88 | |
| 89 | (*) nasty bug in string formatting (see test_types.py, search for %) |
| 90 | |
| 91 | (*) if a triple-quoted string ends in a quote followed by a newline |
| 92 | (followed immediately by the terminating 3 quotes) then a syntax error |
| 93 | or system error ensues |
| 94 | |
| 95 | (*) bug in socket.listen: clipping backlog to >= 1 doesn't work |
| 96 | |
| 97 | (*) two bogus XDEL's in Modules/regexmodule.reg_dealloc() |
| 98 | |
| 99 | (*) Parser/myreadline.my_fgets: #endif EINTR misplaced |
| 100 | |
| 101 | (*) new IP address for ftp.cwi.nl !!! |
| 102 | |
| 103 | (*) typing vars() to interactive prompt runs into infinite loop |
| 104 | because of '_' |
| 105 | |
| 106 | (*) tokenizer/tok_nextc() runs into infinite loop when file does not |
| 107 | end in linefeed |
| 108 | |
| 109 | (*) Sunos4.0.2 / 386 configure bugs: |
| 110 | (*) - use size_t at some places without including sys/types.h |
| 111 | (*) - missing clock_t |
| 112 | (*) - uses SEEK_SET in some places that don't include unistd.h |
| 113 | |
| 114 | ====================================================================== |
| 115 | Bugs found in 1.0.1 and not yet fixed |
| 116 | ------------------------------------- |
| 117 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 118 | (?) 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] | 119 | 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] | 120 | (don't know what to do about this) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 121 | |
| 122 | (?) threads are slow on Solaris 2 |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 123 | (so what?) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 124 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 125 | (*) threads cause myreadline.c's readline() to think it sees an EOF. |
| 126 | (I *think* I've fixed this, by testing for EINTR) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 127 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 128 | (?) 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] | 129 | [this happens on SoftPC -- don't know about other systems] |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 130 | (can't find the reason -- may be SoftPC bug) |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 131 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 132 | (*) flp.py cache bug: if the cache only contains one form, asking for |
| 133 | all forms returns only the cached form |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 134 | |
| 135 | Bugs found in 1.0.1 and fixed in 1.0.2 |
| 136 | -------------------------------------- |
| 137 | |
| 138 | (*) core dump when parser.parsefile() called |
| 139 | |
| 140 | (*) man page contains a mess before -d option |
| 141 | |
| 142 | (*) threads don't work on IRIX 4 |
| 143 | |
| 144 | (*) wrong cast of svideo_getattr in svmodule.c |
| 145 | |
| 146 | (*) bad return value in runpython.c's run_tty_1() |
| 147 | |
| 148 | (*) creating dict of 100,000 objects gets MemoryError or dumps core |
| 149 | |
| 150 | (*) freeze script doesn't work |
| 151 | |
| 152 | ====================================================================== |
| 153 | BUGS found in 1.0.0 and not yet fixed |
| 154 | ------------------------------------- |
| 155 | |
| 156 | (?) On NeXT, need to define _POSIX_SOURCE. |
| 157 | |
| 158 | (?) there appears to be something wrong with gcc and -ldl on some |
| 159 | SunOS 4.1.3 systems |
| 160 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 161 | (?) jredfords reports core dump with float literals |
Guido van Rossum | 5552eb7 | 1994-08-05 15:51:00 +0000 | [diff] [blame] | 162 | |
| 163 | BUGS found in 1.0.0 and fixed in 1.0.1 |
| 164 | -------------------------------------- |
| 165 | |
| 166 | (*) On SGI IRIX 4 using cc, compilation errors in md5module.c. |
| 167 | |
| 168 | (*) In cdmodule.c, getattr initialized with (destructor)! |
| 169 | |
| 170 | (*) Lib/tzparse.py runs test() on import |
| 171 | |
| 172 | (*) Lib/filewin.py belongs in Lib/stdwin |
| 173 | |
| 174 | (*) lib and man install targets don't use $(srcdir) |
| 175 | |
| 176 | (*) Modules/rgbimgmodule.c: exception name contains comma instead of dot |
| 177 | |
| 178 | (*) The FAQ still references misc/EXTENDING and misc/DYNLOAD etc |
| 179 | |
| 180 | (*) The FAQ still describes how to work around a problem in 0.9.9 exec() |
| 181 | |
| 182 | (*) Lib/aifc.py, returns float rate, should be int |
| 183 | |
| 184 | (*) Lib/sunau.py, incorrectly cumputes byte count from frame rate |
| 185 | |
| 186 | (*) README should mention possibility of passing OPT=-g to make |
| 187 | |
| 188 | (*) dynamic loading on sunos 4.1.3 must call dlopen(..., 1) |
| 189 | |
| 190 | (*) use of <varargs.h> vs. <stdarg.h> should depend on |
| 191 | HAVE_STDARG_PROTOTYPES, not on HAVE_STDARG_H |
| 192 | |
| 193 | (*) Doc/README refers to Misc/FTP which in fact does not exist any more |
| 194 | |
| 195 | (*) filter(None, 'abcdefg') dumps core |
| 196 | |
| 197 | (*) once you interrupt time.sleep(), there is no interrupt handler! |
| 198 | |
| 199 | ====================================================================== |
| 200 | end of file |