- 02 Kas, 2001 15 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Just van Rossum yazdı
-
Fred Drake yazdı
generate PostScript).
-
Fred Drake yazdı
-
Fred Drake yazdı
format if there are (building the "bookmarks" for the reader breaks).
-
Just van Rossum yazdı
-
Just van Rossum yazdı
-
Just van Rossum yazdı
-
Just van Rossum yazdı
-
Just van Rossum yazdı
-
Just van Rossum yazdı
- removed default button drawing code: this doesn't work well under OSX. Needs to be replaced by SetWindowDefaultButton() calls, once we have those.
-
Just van Rossum yazdı
-
Fredrik Lundh yazdı
the error it really is (and always has been)
-
- 01 Kas, 2001 15 kayıt (commit)
-
-
Tim Peters yazdı
from optimizing away mod's sign adjustment when mod == 0; so it got the intended result only in the debug build.
-
Jack Jansen yazdı
was installed previously. This fixes bug #476904, but I'm not 100% sure it doesn't break anything else. But if it does I'll notice tomorrow when I try to build GRiNS:-)
-
Tim Peters yazdı
Try to ensure that divmod(-0.0, 1.0) -> (-0.0, +0.0) across platforms. It always did on Windows, and still does. It didn't on Linux. Alas, there's no platform-independent way to write a test case for this. Bugfix candidate.
-
Tim Peters yazdı
presence of NaNs. So pass the issue on to the platform libm fabs(); after all, fabs() is a std C function because you can't implement it correctly in portable C89.
-
Guido van Rossum yazdı
-
Fred Drake yazdı
should just avoid calling it in the first place to avoid waiting for a repr of a large object like a dict or list. The result of PyObject_Repr() was being leaked as well. Bugfix candidate!
-
Tim Peters yazdı
Partial fix. float_abs(): ensure abs(-0.0) returns +0.0. Bugfix candidate.
-
Fred Drake yazdı
This closes SF bug #476898.
-
Tim Peters yazdı
"complicated_bool".
-
Fred Drake yazdı
saferepr(), a bit less for pformat().
-
Neil Schemenauer yazdı
objects to save in gc.garbage. This should be the last change needed to fix SF bug 477059: "__del__ on new classes vs. GC". Note that this change slightly changes the behavior of the collector. Before, if a cycle was found that contained instances with __del__ methods then all instance objects in that cycle were saved in gc.garbage. Now, only objects with __del__ methods are saved in gc.garbage.
-
Jack Jansen yazdı
if you are not building while logged in to the console (you cannot connect to the window server, so the Carbon library doesn't initialize). Added a quick hack to skip the import test, with a warning, for modules linked against Carbon.
-
Guido van Rossum yazdı
When moving objects with a __del__ attribute to a special list, look for __del__ on new-style classes with the HEAPTYPE flag set as well. (HEAPTYPE means the class was created by a class statement.)
-
Jack Jansen yazdı
-
Guido van Rossum yazdı
-
- 31 Eki, 2001 10 kayıt (commit)
-
-
Neil Schemenauer yazdı
SF bug 476129: "gc.collect sometimes hangs".
-
Just van Rossum yazdı
if I hit enter instead of return upon file selection.
-
Just van Rossum yazdı
on demand instead of at startup.
-
Michael W. Hudson yazdı
[ #476557 ] Wrong error message for file.write(a, b) Makes file.write a METH_VARARGS function.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Bump version number
-
Just van Rossum yazdı
-
Jack Jansen yazdı
routines. As of 10.1 using Carbon will crash Python if no window server is available (ssh connection, console mode, MacOSX Server). This fixes bug #466907. A result of this mod is that the default 8bit encoding on OSX is now ASCII, for the time being. Also, the extension modules that need the Carbon framework now explicitly include it in setup.py.
-
Jack Jansen yazdı
-
Chui Tey yazdı
-