- 07 Dec, 2001 13 commits
-
-
Fred Drake authored
-
Finn Bock authored
This closes patch "[ #490330 ] String format bug in test_b2."
-
Guido van Rossum authored
-
Tim Peters authored
-
Fred Drake authored
detector. This closes SF bug #484950.
-
Guido van Rossum authored
so that test_sundry won't fail if the bsddb module is absent.
-
Jack Jansen authored
Not being able to copy PythonCore to the system-folder is not a fatal error, on OSX the user may not have permission to do so. Also give a more informative message in this case. Fixes bug 475253.
-
Michael W. Hudson authored
[ #417634 ] configuring without C++ compiler name by checking that we're not about to try to compile C++ files with "yes". Now we wait for the system where the C++ compiler *is* called yes...
-
Jeremy Hylton authored
Bug fix candidate for 2.1 branch. (I imagine the other recent leak patches are bug fix candidates, too, but I forgot to mark mine as such.)
-
Andrew M. Kuchling authored
Bump version number
-
Guido van Rossum authored
(At least for the repeatable test case that Tim produced.) pattern_subx(): Add missing DECREF(filter) in both exit branches (normal and error return). Also fix a DECREF(args) that should certainly be a DECREF(match) -- because it's inside if (!args) and right after allocation of match.
-
Guido van Rossum authored
annoying that often you have to hit ^C numerous times before it works. The solution: before the "except:" clause, insert "except KeyboardInterrupt: raise". This propagates KeyboardInterrupt out, stopping the test in its tracks.
-
Tim Peters authored
obnoxious to compute and easier to explain. No compromise on safety.
-
- 06 Dec, 2001 27 commits
-
-
Tim Peters authored
-
Tim Peters authored
I was squashing spurious overflows in the implementation, I got hung up on this point).
-
Fred Drake authored
distutils for the library modules built as shared objects. A better solution appears possible, but with the threat that the distutils becomes more magical ("complex"). This closes SF bug #458343.
-
Jack Jansen authored
still fail on importing modules that link with libraries that fail their initialization code (such as windowing libraries when we don't have access to the window server) and that is what I really wanted to fix.
-
Jack Jansen authored
-
Fred Drake authored
-
Jack Jansen authored
-
Jack Jansen authored
as OSX HFS+) and if so add an extension to the python executable, but only in the build directory, not on the installed python.
-
Andrew M. Kuchling authored
adjust it when a versioned interpreter is supplied (#!.../python2 ...)
-
Guido van Rossum authored
Had nothing to do with rich comparisons -- some stack cleanup code was lost as a result of merging in Neil Schemenauer's generators patch. Reinserted the stack cleanup code, skipping it when yielding.
-
Jack Jansen authored
-
Fred Drake authored
-
Fred Drake authored
-
Thomas Heller authored
invalid filenames on Windows when building without specifying a version number in the setup script. See also http://mail.python.org/pipermail/distutils-sig/2001-November/002656.html Bugfix candidate.
-
Fred Drake authored
This closes SF bug #489872.
-
Tim Peters authored
check it. Added an assert() to that effect.
-
Guido van Rossum authored
This is best reproduced by while 1: class U(unicode): pass U(u"xxxxxx") The unicode_dealloc() code wasn't properly freeing the str and defenc fields of the Unicode object when freeing a subtype instance. Fixed this by a subtle refactoring that actually reduces the amount of code slightly.
-
Martin v. Löwis authored
Fixes #486099.
-
Fred Drake authored
properly set. This fixes that.
-
Fred Drake authored
initialized, this will be None, but the functions will still work (there will simply be a bogus parent on the screen). Allowing the parent to be None is useful when testing the functions from an interactive interpreter. Add an optional keyword paramter "show" to the _QueryString class; when given it is used to set the -show option to the entry widget. This allows passing show="*" or the like to askstring(), making it useful for requesting passwords/passphrases from the user. This closes SF bug #438517. Changed a docstring to be less font-lock-hostile.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
Bugfix candidate.
-
Jeremy Hylton authored
PyCell_Set() incremenets the reference count, so the earlier XINCREF causes a leak. Also make a number of small performance improvements to the code on the assumption that most of the time variables are not rebound across a FastToLocals() / LocalsToFast() pair. Replace uses of PyCell_Set() and PyCell_Get() with PyCell_SET() and PyCell_GET(), since the frame is guaranteed to contain cells.
-
Jeremy Hylton authored
Add a missing DECREF in an obscure corner. If the str() or repr() of an object passed to a string interpolation -- e.g. "%s" % obj -- returns a non-string, the returned object was leaked. Repair an indentation glitch. Replace a bunch of PyString_AsString() calls (and their ilk) with macros.
-
Jeremy Hylton authored
The st_future slot of the symtable is not freed by PySymtable_Free() because it is shared by the symtable and compiling structs in compiel.c. Since it is shared, it is explicitly deallocated when the compiling struct is freed.
-
Guido van Rossum authored
leak when a class defined a __metaclass__. This fixes the problem reported on python-dev by Ping; I dunno if it's the same as SF bug #489669 (since that mentions Unicode).
-