blob: 082f70092dec328624059651c54cc55b4ea5d05c [file] [log] [blame]
Guido van Rossum5552eb71994-08-05 15:51:00 +00001Sorry, this list does not claim completeness. If I fixed a bug
2immediately upon receiving the first complaint I usually did not
Guido van Rossumc561e5d1994-08-23 13:52:46 +00003nother to make an entry in this file, unless it was a serious bug
Guido van Rossum5552eb71994-08-05 15:51:00 +00004(core dump or infinite loop).
5
Guido van Rossumc561e5d1994-08-23 13:52:46 +00006==> Status indicators: (-) not fixed; (*) fixed; (?) don't know what to do.
Guido van Rossum5552eb71994-08-05 15:51:00 +00007
8======================================================================
Guido van Rossum9444ce01994-10-20 22:10:23 +00009BUGS found in 1.1 and fixed in 1.1.1
10------------------------------------
11
12(*) pow() should be declared varargs since it uses newgetargs
13
14BUGS found in 1.1 and not yet fixed
15-----------------------------------
16
17(-) A built-in function using getargs() and expecting >= 1 argument
18may dump core when called without arguments
19
20BUGS found in 1.0.3 and fixed in 1.1
21------------------------------------
22
23
24(*) If class C doesn't define __cmp__, cmp(a,b) will return -2 and
25[a,b].sort() will fail
26
Guido van Rossumc561e5d1994-08-23 13:52:46 +000027BUGS found in 1.0.3 and not yet fixed
28-------------------------------------
Guido van Rossum5552eb71994-08-05 15:51:00 +000029
Guido van Rossumc561e5d1994-08-23 13:52:46 +000030(-) print_error raises and then masks an error if softspace is not
Guido van Rossum2b11c611994-10-06 16:36:15 +000031 defined (can't reproduce this one?)
Guido van Rossumfda5fb21994-08-12 13:18:41 +000032
Guido van Rossum9444ce01994-10-20 22:10:23 +000033BUGS found in 1.0.3 and fixed in 1.1
34------------------------------------
35
Guido van Rossum2b11c611994-10-06 16:36:15 +000036(*) Syntax errors are reported in a silly way if multi-line tokens are
Guido van Rossumfda5fb21994-08-12 13:18:41 +000037involved.
38
Guido van Rossum2b11c611994-10-06 16:36:15 +000039(*) SyntaxError exception for compile('...') are reported wrongly
Guido van Rossumfda5fb21994-08-12 13:18:41 +000040(lineno is always zero and offset is offset into the whole string).
41
Guido van Rossum2b11c611994-10-06 16:36:15 +000042(*) freeze script needs major rewrite to cope with multiple extensions
Guido van Rossumc561e5d1994-08-23 13:52:46 +000043(Jack seems to have fixed it now -- where is it?)
44
Guido van Rossum2b11c611994-10-06 16:36:15 +000045(*) various memory leaks (see purify report from anthony.baxter@aaii.oz.au)
46(several leaks fixed anyway :-)
Guido van Rossumc561e5d1994-08-23 13:52:46 +000047
Guido van Rossumc561e5d1994-08-23 13:52:46 +000048(*) unwanted entries in stack trace if err_clear() clears an error
49that also set a stack trace
50
51(*) i, x[i] = a, b assigns b to x[a] rather than to x[i] as expected
52(documented with a warning in ref6.tex!)
53
54(*) etags no longer supports -t flag
55
56(*) compile.c:com_argdefs() references unalloc'ed memory for def
57f(a=1,): ...
58
59(*) If you have a python binary in your path like
Guido van Rossumfda5fb21994-08-12 13:18:41 +000060/ufs/guido/bin/sgi/python then the default prefix option computed by
61the configure script is bogus!
62
Guido van Rossumc561e5d1994-08-23 13:52:46 +000063(*) Make rule for making lib*.a should remove the lib*.a file first.
Guido van Rossumfda5fb21994-08-12 13:18:41 +000064
Guido van Rossum5552eb71994-08-05 15:51:00 +000065(*) vars() error message is wrong (copied from dir() obviously).
66
67(*) socket.gethostname() is undocumented.
68
69(*) rfc822.py: getfirst* dies when multiple headers occur
70
Guido van Rossumc561e5d1994-08-23 13:52:46 +000071(*) urllib caching is wrong (should use date from Expires header)
Guido van Rossum5552eb71994-08-05 15:51:00 +000072
73(*) On a related matter: regexpr.c still has two malloc()s the results
Guido van Rossumc561e5d1994-08-23 13:52:46 +000074of which are not tested for being NULL (lines 1253 and 1530). There
75are also some in rgbimagemodule.c. Am I overlooking something or is
Guido van Rossumfda5fb21994-08-12 13:18:41 +000076this a crasher?
Guido van Rossum5552eb71994-08-05 15:51:00 +000077
78(*) strop.rindex('abc', '') returns 0 instead of 3
79
80(*) sunaudiodevmodule.o is too long!
81
Guido van Rossumc561e5d1994-08-23 13:52:46 +000082(*) toplevel README needs new text on PC and Mac builds
Guido van Rossum5552eb71994-08-05 15:51:00 +000083
84(*) long(0x80000000) has wrong value!
85
86======================================================================
87Bugs found in 1.0.2 and not yet fixed
88-------------------------------------
89
Guido van Rossumc561e5d1994-08-23 13:52:46 +000090(?) compiler warnings about argument type of uname() on ULTRIX
91machines (don't know what to do about it)
Guido van Rossum5552eb71994-08-05 15:51:00 +000092
Guido van Rossumc561e5d1994-08-23 13:52:46 +000093(?) syntax error for interactive input prints garbage instead of last
94source line on some systems (e.g. AIX) (impossible to test/reproduce)
95!!! I think I've found this one -- a missing INCREF in print_error!
Guido van Rossum5552eb71994-08-05 15:51:00 +000096
97(?) (maybe) a bad .pyc file (with old magic number) causes the .py
98file to be ignored
99
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000100(?) Sunos4.0.2 / 386 configure bugs:
Guido van Rossum5552eb71994-08-05 15:51:00 +0000101 - timelocal instead of mktime
102 - unistd.h doesn't declare some functions
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000103(don't know what to do about this)
Guido van Rossum5552eb71994-08-05 15:51:00 +0000104
105Bugs found in 1.0.2 and fixed in 1.0.3
106--------------------------------------
107
108(*) nasty bug in string formatting (see test_types.py, search for %)
109
110(*) if a triple-quoted string ends in a quote followed by a newline
111(followed immediately by the terminating 3 quotes) then a syntax error
112or system error ensues
113
114(*) bug in socket.listen: clipping backlog to >= 1 doesn't work
115
116(*) two bogus XDEL's in Modules/regexmodule.reg_dealloc()
117
118(*) Parser/myreadline.my_fgets: #endif EINTR misplaced
119
120(*) new IP address for ftp.cwi.nl !!!
121
122(*) typing vars() to interactive prompt runs into infinite loop
123because of '_'
124
125(*) tokenizer/tok_nextc() runs into infinite loop when file does not
126end in linefeed
127
128(*) Sunos4.0.2 / 386 configure bugs:
129(*) - use size_t at some places without including sys/types.h
130(*) - missing clock_t
131(*) - uses SEEK_SET in some places that don't include unistd.h
132
133======================================================================
134Bugs found in 1.0.1 and not yet fixed
135-------------------------------------
136
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000137(?) modsupport.c(vmkvalue): on systems where va_list is an array, the
Guido van Rossum5552eb71994-08-05 15:51:00 +0000138calls to do_mkvalue and do_mktuple don't want an "&" before va.
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000139(don't know what to do about this)
Guido van Rossum5552eb71994-08-05 15:51:00 +0000140
141(?) threads are slow on Solaris 2
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000142(so what?)
Guido van Rossum5552eb71994-08-05 15:51:00 +0000143
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000144(*) threads cause myreadline.c's readline() to think it sees an EOF.
145(I *think* I've fixed this, by testing for EINTR)
Guido van Rossum5552eb71994-08-05 15:51:00 +0000146
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000147(?) min() on PC version generates wrong result (i.e. same as max())
Guido van Rossum5552eb71994-08-05 15:51:00 +0000148 [this happens on SoftPC -- don't know about other systems]
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000149(can't find the reason -- may be SoftPC bug)
Guido van Rossum5552eb71994-08-05 15:51:00 +0000150
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000151(*) flp.py cache bug: if the cache only contains one form, asking for
152all forms returns only the cached form
Guido van Rossum5552eb71994-08-05 15:51:00 +0000153
154Bugs found in 1.0.1 and fixed in 1.0.2
155--------------------------------------
156
157(*) core dump when parser.parsefile() called
158
159(*) man page contains a mess before -d option
160
161(*) threads don't work on IRIX 4
162
163(*) wrong cast of svideo_getattr in svmodule.c
164
165(*) bad return value in runpython.c's run_tty_1()
166
167(*) creating dict of 100,000 objects gets MemoryError or dumps core
168
169(*) freeze script doesn't work
170
171======================================================================
172BUGS found in 1.0.0 and not yet fixed
173-------------------------------------
174
175(?) On NeXT, need to define _POSIX_SOURCE.
176
177(?) there appears to be something wrong with gcc and -ldl on some
178SunOS 4.1.3 systems
179
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000180(?) jredfords reports core dump with float literals
Guido van Rossum5552eb71994-08-05 15:51:00 +0000181
182BUGS found in 1.0.0 and fixed in 1.0.1
183--------------------------------------
184
185(*) On SGI IRIX 4 using cc, compilation errors in md5module.c.
186
187(*) In cdmodule.c, getattr initialized with (destructor)!
188
189(*) Lib/tzparse.py runs test() on import
190
191(*) Lib/filewin.py belongs in Lib/stdwin
192
193(*) lib and man install targets don't use $(srcdir)
194
195(*) Modules/rgbimgmodule.c: exception name contains comma instead of dot
196
197(*) The FAQ still references misc/EXTENDING and misc/DYNLOAD etc
198
199(*) The FAQ still describes how to work around a problem in 0.9.9 exec()
200
201(*) Lib/aifc.py, returns float rate, should be int
202
203(*) Lib/sunau.py, incorrectly cumputes byte count from frame rate
204
205(*) README should mention possibility of passing OPT=-g to make
206
207(*) dynamic loading on sunos 4.1.3 must call dlopen(..., 1)
208
209(*) use of <varargs.h> vs. <stdarg.h> should depend on
210 HAVE_STDARG_PROTOTYPES, not on HAVE_STDARG_H
211
212(*) Doc/README refers to Misc/FTP which in fact does not exist any more
213
214(*) filter(None, 'abcdefg') dumps core
215
216(*) once you interrupt time.sleep(), there is no interrupt handler!
217
218======================================================================
219end of file