- 05 Dec, 2001 13 commits
-
-
Fred Drake authored
-
Fred Drake authored
parser_tuple2st() and a failure to propogate an error in build_node_children() (masking yet another leak, of course!). This closes SF bug #485133 (confirmed by Insure++).
-
Fred Drake authored
This closes SF bug #489513.
-
Guido van Rossum authored
happy if one could delete the __dict__ attribute of an instance. I love to make Jim happy, so here goes... - New-style objects now support deleting their __dict__. This is for all intents and purposes equivalent to assigning a brand new empty dictionary, but saves space if the object is not used further.
-
Fred Drake authored
pertains to the script is now in the if __name__ == "__main__" block. This is in response to a commenton python-dev from Neal Norwitz.
-
Jack Jansen authored
As of OS X 10.1.1 the version numbering scheme has changed. Convert all "darwin*" to "darwin" and use that for testing.
-
Steven M. Gava authored
-
Steven M. Gava authored
-
Steven M. Gava authored
-
Tim Peters authored
Bugfix candidate. A numerically naive computation of output buffer size caused crashes and spurious MemoryErrors for reasonable arguments. audioop_ratecv(): Avoid spurious overflow by careful reworking of the buffer size computations, triggering MemoryError if and only if the final buffer size can't be represented in a C int (although PyString_FromStringAndSize may legitimately raise MemoryError even if it does fit in a C int). All reasonable arguments should work as intended now, and all unreasonable arguments should be cuaght.
-
Fred Drake authored
attribute of file objects, the print statement, and other file operations. This closes SF bug #484857. Fix minor markup nits.
-
Fred Drake authored
that it does not guarantee that all data is sent. This closes SF patch #474307.
-
Tim Peters authored
-
- 04 Dec, 2001 27 commits
-
-
Tim Peters authored
int_mul(): new and vastly simpler overflow checking. Whether it's faster or slower will likely vary across platforms, favoring boxes with fast floating point. OTOH, we no longer have to worry about people shipping broken LONG_BIT definitions <0.9 wink>.
-
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
-