- 21 Sep, 2000 29 commits
-
-
Fred Drake authored
-
Fred Drake authored
This closes SourceForge bug #114792.
-
Fred Drake authored
-
Marc-André Lemburg authored
and bumped the version number to 1.7.
-
Marc-André Lemburg authored
unicode_internal_decode function to support Unicode objects directly rather than by generating a copy of the object.
-
Marc-André Lemburg authored
"s#" will now return a pointer to the default encoded string data of the Unicode object instead of a pointer to the raw UTF-16 data. The latter is still available via PyObject_AsReadBuffer(). The patch also adds an optimization for string objects which is based on the fact that string objects return the raw character data for getreadbuffer access and are always single-segment.
-
Marc-André Lemburg authored
"s#" will now return a pointer to the default encoded string data of the Unicode object instead of a pointer to the raw UTF-16 data. The latter is still available via PyObject_AsReadBuffer().
-
Fred Drake authored
to the Python style guide, and remove unneeded imports.
-
Guido van Rossum authored
flag is true, is set to a StringIO object that silently collects all debug messages. This is triggered by the Node._debug=1 statement at the top of test_minidom.py. After the tests, we better delete that StringIO object to avoid wasting memory. We also reset the _debug flag. (Note that this is an undetectable memory leak, and the memory doesn't get collected by the cycle-gc either, because it's all reachable -- it's just useless.)
-
Fred Drake authored
data and default handlers -- a new reference was being passed to Py_BuildValue() for the "O" format character; using "N" plugs the leak. Fixed two other (minor) leaks that occurred on various error conditions. Removed uses of the UNLESS macro, which makes code hard to read, and is Evil.
-
Fred Drake authored
Add support for parsing already-opened files. Make sure the parse() method closes exactly those files that it opens. Modified by FLD for better conformance to the Python style guide. This closes SourceForge patch #101512.
-
Fredrik Lundh authored
- added experimental "expand" method to match objects - don't use the buffer interface on unicode strings
-
Fred Drake authored
-
Guido van Rossum authored
_Py_Dealloc(), is a bad idea (and always was!). So let's drop it.
-
Fred Drake authored
make too big a mess. One actually did not fit on a single page at all!
-
Fred Drake authored
support long tables which might break across page boundaries. Otherwise identical to tableii, tableiii, and tableiv.
-
Fred Drake authored
macros in the argument list position.
-
Jeremy Hylton authored
-
Guido van Rossum authored
from the FreeBSD code.
-
Lars Gustäbel authored
-
Lars Gustäbel authored
-
Lars Gustäbel authored
-
Lars Gustäbel authored
-
Tim Peters authored
Don't ship debug .dll, .pyd or .lib files. Saves space. Bumped the title to beta 2.
-
Tim Peters authored
Note a curious extension to the std C rules: x, X and o formatting can never produce a sign character in C, so the '+' and ' ' flags are meaningless for them. But unbounded ints *can* produce a sign character under these conversions (no fixed- width bitstring is wide enough to hold all negative values in 2's-comp form). So these flags become meaningful in Python when formatting a Python long which is too big to fit in a C long. This required shuffling around existing code, which hacked x and X conversions to death when both the '#' and '0' flags were specified: the hacks weren't strong enough to deal with the simultaneous possibility of the ' ' or '+' flags too, since signs were always meaningless before for x and X conversions. Isomorphic shuffling was required in unicodeobject.c. Also added dozens of non-trivial new unbounded-int test cases to test_format.py.
-
Fred Drake authored
reported by Detlef Lannert <lannert@uni-duesseldorf.de>.
-
Fred Drake authored
reported by Detlef Lannert <lannert@uni-duesseldorf.de>.
-
Fred Drake authored
<lannert@uni-duesseldorf.de>.
-
Greg Ward authored
-
- 20 Sep, 2000 9 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Fred Drake authored
once if all the temporary files are available from building a DVI file. This can avoid two runs of pdflatex.
-
Fred Drake authored
not as a user-controlled parameter.
-
Fred Drake authored
-
Fred Drake authored
sub-modules).
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Guido van Rossum authored
-
- 19 Sep, 2000 2 commits
-
-
Greg Ward authored
resource files. The gist of the patch is to treat ".rc" and ".mc" files as source files; ".mc" files are compiled to ".rc" and then ".res", and ".rc" files are compiled to ".res". Wish I knew what all these things stood for...
-
Tim Peters authored
recent changes to ntpath.py and posixmodule.c. Thanks to Guido for pointing out the inconsistency!
-