summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix two crashers.Guido van Rossum2008-01-232-42/+0
|
* Fixed bug #1915: Python compiles with --enable-unicode=no again. However ↵Christian Heimes2008-01-232-2/+7
| | | | several extension methods and modules do not work without unicode support.
* I'm tired of these tests breaking at Google due to our large number ofGuido van Rossum2008-01-232-0/+6
| | | | | users and groups in LDAP/NIS. So I'm limiting the extra-heavy part of the tests to passwd/group files with at most 1000 entries.
* Let pprint() support sets and frozensets (suggested by David Mertz).Raymond Hettinger2008-01-231-2/+15
|
* docstring and comment updates suggested by Giampaolo Rodola'Gregory P. Smith2008-01-221-3/+3
|
* Fix for #1087741 patch.Georg Brandl2008-01-221-0/+7
|
* - Fix Issue #1703448: A joined thread could show up in theGregory P. Smith2008-01-222-5/+26
| | | | | threading.enumerate() list after the join() for a brief period until it actually exited.
* Replace spam.acquire() try: ... finally: spam.release() with "with spam:"Gregory P. Smith2008-01-221-24/+8
|
* accepts and closes issue #1221598: adds an optional callback to ftplib.FTPGregory P. Smith2008-01-221-17/+52
| | | | storbinary() and storlines() methods.
* Reformat some ugly code.Georg Brandl2008-01-211-26/+27
|
* Patch #1720595: add T_BOOL to the range of structmember types.Georg Brandl2008-01-211-1/+7
| | | | Patch by Angelo Mottola, reviewed by MvL, tests by me.
* Add the correct build dir when building with pydebug.Georg Brandl2008-01-211-0/+2
|
* #1715: include sub-extension modules in pydoc text output.Georg Brandl2008-01-212-1/+19
|
* Follow PEP 8 in module docstring.Walter Dörwald2008-01-211-5/+5
|
* Issue #1882: when compiling code from a string, encoding cookies in theGeorg Brandl2008-01-211-1/+9
| | | | second line of code were not always recognized correctly.
* #1530959: change distutils build dir for --with-pydebug python builds.Georg Brandl2008-01-211-0/+6
|
* Clarify $ behavior in re docstring. #1631394.Georg Brandl2008-01-211-3/+6
|
* #1726198: replace while 1: fp.readline() with file iteration.Georg Brandl2008-01-213-10/+3
|
* Adapt pydoc to new doc URLs.Georg Brandl2008-01-211-7/+6
|
* Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. ↵Vinay Sajip2008-01-211-2/+5
| | | | Patch thanks to Kathryn M. Kowalski.
* #1555501: document plistlib and move it to the general library.Georg Brandl2008-01-211-1/+1
|
* #1269: fix a bug in pstats.add_callers() and add a unit test file for pstats.Georg Brandl2008-01-212-1/+28
|
* #1876: fix typos in test_operator.Georg Brandl2008-01-201-4/+4
|
* Fix test_pyclbr after urllib change.Georg Brandl2008-01-201-0/+1
|
* #1669: don't allow shutil.rmtree() to be called on a symlink.Georg Brandl2008-01-202-0/+22
|
* #1648: add sys.gettrace() and sys.getprofile().Georg Brandl2008-01-202-0/+31
|
* #1664522: in urllib, don't read non-existing directories in ftp mode,Georg Brandl2008-01-201-3/+13
| | | | | returning a 0-byte file -- raise an IOError instead. Original patch from Phil Knirsch.
* #856047: respect the ``no_proxy`` env var when checking for proxiesGeorg Brandl2008-01-201-8/+44
| | | | | in urllib and using the other ``_proxy`` env vars. Original patch by Donovan Baarda.
* #1178141: add addinfourl.code to get http status code from urllib.Georg Brandl2008-01-203-5/+24
|
* #1351692: in pprint, always call format() for dict and list items to enableGeorg Brandl2008-01-201-55/+60
| | | | custom formatting of contents via subclassing PrettyPrinter.
* Document that zipfile decryption is insanely slow and fix a typo andGregory P. Smith2008-01-201-1/+1
| | | | | blatant lie in a docstring (it is not useful for security regardless of how you spell it).
* Fix zipfile decryption. The check for validity only worked on oneGregory P. Smith2008-01-202-2/+32
| | | | | | | | type of encrypted zip files. Files using extended local headers needed to compare the check byte against different values. (according to reading the infozip unzip crypt.c source code) Fixes issue1003.
* Add an interactive test script for exercising cursesAndrew M. Kuchling2008-01-201-0/+46
|
* Patch #1048820 from Stefan Wehr: add insert-mode editing to Textbox.Andrew M. Kuchling2008-01-201-11/+25
| | | | Fix an off-by-one error I noticed.
* Fixes/Accepts Patch for issue1189216 - Work properly with archivesGregory P. Smith2008-01-191-2/+2
| | | | that have file headers past the 2**31 byte boundary.
* Fix issue 1300: Quote command line arguments that contain a '|' character inGregory P. Smith2008-01-192-3/+5
| | | | subprocess.list2cmdline (windows).
* Undo an unnecessary else: and indentation that r60104 added.Gregory P. Smith2008-01-191-58/+57
| | | | | | | | | | | | try: ... except: ... raise else: ... the else: is unecessary due to the blind except: with a raise.
* Fixes issue1336 - a race condition could occur when forking if the gcGregory P. Smith2008-01-191-58/+71
| | | | | | | kicked in during the critical section. solution: disable gc during that section. Patch contributed by jpa and updated by me to cover the race condition still existing what therve from twistedmatrix pointed out (already seen and fixed in twisted's own subprocess code).
* fix comment typos, use not arg instead of arg == "", add test coverageGregory P. Smith2008-01-192-3/+5
| | | | for inside of the final if needquotes: within subprocess.list2cmdline().
* #1663329: add os.closerange() to close a range of fds,Georg Brandl2008-01-192-7/+8
| | | | | ignoring errors, and use this in subprocess to speed up subprocess creation in close_fds mode. Patch by Mike Klaas.
* Bug 1277: make Maildir use the user-provided factory instead of hard-wiring ↵Andrew M. Kuchling2008-01-192-1/+18
| | | | | | MaildirMessage. 2.5.2 bugfix candidate.
* Fix #1146: TextWrap vs words 1-character shorter than the width.Georg Brandl2008-01-192-1/+19
| | | | Patch by Quentin Gallet-Gilles.
* Fix #1679: "0x" was taken as a valid integer literal.Georg Brandl2008-01-193-1/+8
| | | | | Fixes the tokenizer, tokenize.py and int() to reject this. Patches by Malte Helmert.
* Fix #1693149. Now you can pass several modules separated byFacundo Batista2008-01-191-3/+5
| | | | | coma to trace.py in the same --ignore-module option. Thanks Raghuram Devarakonda.
* Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().Andrew M. Kuchling2008-01-191-0/+36
| | | | Contributed by John Lenton.
* Disabled test_xmlrpc:test_404. It's causing lots of false alarms.Christian Heimes2008-01-193-4/+4
| | | | I also disabled a test in test_ssl which requires network access to svn.python.org. This fixes a bug Skip has reported a while ago.
* Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer ↵Andrew M. Kuchling2008-01-191-4/+41
| | | | | | that will call .handle_timeout() method when no requests are received within the timeout period.
* Update for threading.local test.Christian Heimes2008-01-191-2/+18
|
* Added unit test to verify that threading.local doesn't cause ref leaks. It ↵Christian Heimes2008-01-191-1/+27
| | | | seems that the thread local storage always keeps the storage of the last stopped thread alive. Can anybody comment on it, please?
* Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for aFacundo Batista2008-01-192-0/+9
| | | | | just-created (and empty) instance. Added tests for this. Thanks Jonathan Share.