- 03 Kas, 2001 1 kayıt (commit)
-
-
Steven M. Gava yazdı
-
- 02 Kas, 2001 25 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Just van Rossum yazdı
-
Just van Rossum yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Simplfy the insint() macro to use PyModule_AddIntConstant().
-
Andrew M. Kuchling yazdı
module
-
Andrew M. Kuchling yazdı
it works
-
Andrew M. Kuchling yazdı
-
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 14 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ı
-