- 04 Aug, 2004 10 commits
-
-
Vinay Sajip authored
-
Vinay Sajip authored
Close handlers and tidy up loggers by removing closed handlers - to avoid problems when run twice (SF #1002537)
-
Hye-Shik Chang authored
-
Hye-Shik Chang authored
unicodedata.east_asian_width(). You can still implement your own simple width() function using it like this: def width(u): w = 0 for c in unicodedata.normalize('NFC', u): cwidth = unicodedata.east_asian_width(c) if cwidth in ('W', 'F'): w += 2 else: w += 1 return w
-
Hye-Shik Chang authored
or broken by basic ctype functions in 4.4BSD descendants. This will be fixed in their future development branches but they'll keep the POSIX-incompatibility for their backward-compatiblities in near future.
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
imputils Importer._process_result(): remove name from modules dict if exec fails. This is what all the builtin importers do now, new in 2.4.
-
Tim Peters authored
-
- 03 Aug, 2004 30 commits
-
-
Fred Drake authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Fred Drake authored
(closes SF bug #658254, patch #663482)
-
Fred Drake authored
scripts without modifying either the distutils installation or the setup.py scripts of packages with which the new commands will be used. Specifically, an option is added to distutils that allows additional packages to be searched for command implementations in addition to distutils.command. The additional packages can be specified on the command line or via the installation or personal configuration files already loaded by distutils. For discussion, see the thread starting with: http://mail.python.org/pipermail/distutils-sig/2004-August/004112.html This closes SF patch #102241.
-
Fred Drake authored
-
Fred Drake authored
-
Anthony Baxter authored
-
Fred Drake authored
for the tests, and restored properly when done
-
Michael W. Hudson authored
-
Fred Drake authored
possible that the callback-less flavors of the ref or proxy could have been added during GC, so we don't want to replace them.
-
Michael W. Hudson authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
Will backport to 2.3.
-
Martin v. Löwis authored
Python was built with VC 7.1.
-
Michael W. Hudson authored
It's not the 100% solution -- it may not even be the 90% solution -- but it does seem to help.
-
Michael W. Hudson authored
-
Anthony Baxter authored
-
Michael W. Hudson authored
-
Michael W. Hudson authored
-
Anthony Baxter authored
an initlog() (and initlog()'s docstring says "don't use this"!) This allows test_cgi to be run repeatedly in a single run of the interpreter.
-
Michael W. Hudson authored
way to guarantee a deadlock on the next call! If I've inadvertently done some damage to this test, sorry (but I don't think I have).
-
Michael W. Hudson authored
Hard to believe it ever helped anything, and it hurts finding reference leaks.
-
Michael W. Hudson authored
the case of __del__ resurrecting an object. This makes the apparent reference leaks in test_descr go away (which I expected) and also kills off those in test_gc (which is more surprising but less so once you actually think about it a bit).
-
Michael W. Hudson authored
-
Raymond Hettinger authored
-
Armin Rigo authored
-
Fred Drake authored
-