- 04 Dec, 2001 28 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
written to the log file, and turn off the profiler. This closes SF bug #483925.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Fred Drake authored
This is the Unix portion of the fix for SF bug #489052.
-
Guido van Rossum authored
reserved words. No longer need to import string.
-
Guido van Rossum authored
didn't use reswords.py, as the comment clearly states. :-(
-
Tim Peters authored
extensions that #include Python.h. See (rejected) patch 487634 for more detail. I'll open a new bug report for the rest needed here.
-
Fred Drake authored
modules, or the module cannot be properly imported. (Based on a suggestion sent to python-docs.) Update the displayed dir() of the sys and __builtin__ module with Python 2.2.
-
Fred Drake authored
give examples for which str() and repr() yield different results. This closes SF bug #485446.
-
Ka-Ping Yee authored
By default, save sys.stdout in self.file when a Hook instance is created (e.g. when cgitb.enable() is called).
-
Guido van Rossum authored
$BROWSER should be split on os.pathsep, not on ":".
-
Guido van Rossum authored
There's now a new structmember code, T_OBJECT_EX, which is used for all __slot__ variables (except __weakref__, which has special behavior anyway). This new code raises AttributeError when the variable is NULL rather than converting NULL to None.
-
Fred Drake authored
insertion work. This fix makes things at least somewhat more explicit, and adds a little sanity checking (and verbosity!) to add_bbl_and_idx_dummy_commands().
-
Fred Drake authored
by a question to webmaster). Re-wrapped a long line.
-
Guido van Rossum authored
result would overflow an int. Check for this. (SF bug #488482, Armin Rigo.)
-
Fred Drake authored
-
Guido van Rossum authored
There's now a new structmember code, T_OBJECT_EX, which is used for all __slot__ variables (except __weakref__, which has special behavior anyway). This new code raises AttributeError when the variable is NULL rather than converting NULL to None.
-
Guido van Rossum authored
string object (or a Unicode that's trivially converted to ASCII). PyObject_GetAttr(): add an 'else' to the Unicode test like PyObject_SetAttr() already has.
-
Guido van Rossum authored
(Not sure if this is legal according to the Google terms of service. :-)
-
Jack Jansen authored
Patch by Jason Harper to allow IDE to work again under MacOS 8.1. Plus appearance support for Wlist frames and focussing. Plus commented-out appearance support for the same for Wtext, which still needs some work.
-
Guido van Rossum authored
-
Tim Peters authored
-
Tim Peters authored
own interfered with including Python.h. Remove Python's assert.h.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
The error for assignment to __debug__ used ste->ste_opt_lineno instead of n->n_lineno. The latter was at best incorrect; often the slot was uninitialized. Two fixes here: Use the correct lineno for the error. Initialize ste_opt_lineno in PySymtable_New(); while there are no current cases where it is referenced unless it has already been assigned to, there is no harm in initializing it.
-
Tim Peters authored
-
- 03 Dec, 2001 12 commits
-
-
Fred Drake authored
from Skip Montanaro. There is one weirdness in the final index for HTML, but that is low priority.
-
Fred Drake authored
Andrew Koenig.
-
Fred Drake authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
Reflow paragraph
-
Tim Peters authored
sprintf -> PyOS_snprintf. This is the last of this stuff I intend to do.
-
Guido van Rossum authored
and assign_slice() weren't properly DECREF'ing the temporary slice object they created. (Shame on me. :-)
-
Guido van Rossum authored
Armin Rigo (SF bug #488477). Added a testcase to test_unpack_iter() in test_iter.py.
-
Just van Rossum authored
-
Barry Warsaw authored
#486375, but not the rest of it, since that changes the documented semantics of encode().
-
Guido van Rossum authored
Py_DECREF(arg) after the PyErr_NoMemory() call. (Armin Rigo, SF bug #488477.)
-
Fred Drake authored
sent to python-docs.
-