- 06 Aug, 2004 3 commits
-
-
Raymond Hettinger authored
(Original patch by Armin Rigo).
-
Brett Cannon authored
python.org . This way the delay should be great enough for testConnectTimeout() to pass even when one has a really fast Net connection that allows connections faster than .001 seconds.
-
Fred Drake authored
-
- 05 Aug, 2004 5 commits
-
-
Fred Drake authored
-
Marc-André Lemburg authored
TIS-620. Closes SF bug #1001895: Adding missing ISO 8859 codecs, especially Thai.
-
Phillip J. Eby authored
definition, per Guido's request in off-list email.
-
cvs2svn authored
-
Anthony Baxter authored
-
- 04 Aug, 2004 22 commits
-
-
Matthias Klose authored
Doc/dist/dist.tex: avoid uncommenting the verbose environment (by the py2texi tool)
-
Fred Drake authored
years
-
Tim Peters authored
in a -O run, and so test_doctest was failing under -O. Simple cause, simple cure.
-
Tim Peters authored
the tim-doctest-merge-24a2 tag on the the tim-doctest-branch branch. We did development on the branch in case it wouldn't land in time for 2.4a2, but the branch looked good: Edward's tests passed there, ditto Python's tests, and ditto the Zope3 tests. Together, those hit doctest heavily.
-
Hye-Shik Chang authored
-
Hye-Shik Chang authored
modes like non-interactive modes. This allows for non-latin-1 users to write unicode strings directly and sets Japanese users free from weird manual escaping <wink> in shift_jis environments. (Reviewed by Martin v. Loewis)
-
Michael W. Hudson authored
-
Michael W. Hudson authored
-
Michael W. Hudson authored
place! (can that please be it for silly mistakes in this file? :-) I know I started it, but...). Also, rearrangements to run repeatedly.
-
Martin v. Löwis authored
-
Michael W. Hudson authored
.pyc size) after all.
-
Vinay Sajip authored
-
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 10 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
-