- 03 Nov, 2001 3 commits
-
-
Steven M. Gava authored
-
Martin v. Löwis authored
-
Steven M. Gava authored
-
- 02 Nov, 2001 25 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Just van Rossum authored
-
Just van Rossum authored
-
Fred Drake authored
-
Fred Drake authored
Simplfy the insint() macro to use PyModule_AddIntConstant().
-
Andrew M. Kuchling authored
module
-
Andrew M. Kuchling authored
it works
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Just van Rossum authored
-
Fred Drake authored
generate PostScript).
-
Fred Drake authored
-
Fred Drake authored
format if there are (building the "bookmarks" for the reader breaks).
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
- 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 authored
-
Fredrik Lundh authored
the error it really is (and always has been)
-
- 01 Nov, 2001 12 commits
-
-
Tim Peters authored
from optimizing away mod's sign adjustment when mod == 0; so it got the intended result only in the debug build.
-
Jack Jansen authored
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 authored
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 authored
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 authored
-
Fred Drake authored
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 authored
Partial fix. float_abs(): ensure abs(-0.0) returns +0.0. Bugfix candidate.
-
Fred Drake authored
This closes SF bug #476898.
-
Tim Peters authored
"complicated_bool".
-
Fred Drake authored
saferepr(), a bit less for pformat().
-
Neil Schemenauer authored
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 authored
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.
-