- 02 Nov, 2001 17 commits
-
-
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 15 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.
-
Guido van Rossum authored
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 authored
-
Guido van Rossum authored
-
- 31 Oct, 2001 8 commits
-
-
Neil Schemenauer authored
SF bug 476129: "gc.collect sometimes hangs".
-
Just van Rossum authored
if I hit enter instead of return upon file selection.
-
Just van Rossum authored
on demand instead of at startup.
-
Michael W. Hudson authored
[ #476557 ] Wrong error message for file.write(a, b) Makes file.write a METH_VARARGS function.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
Bump version number
-
Just van Rossum authored
-
Jack Jansen authored
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.
-