Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix two crashers. | Guido van Rossum | 2008-01-23 | 2 | -42/+0 |
| | |||||
* | Fixed bug #1915: Python compiles with --enable-unicode=no again. However ↵ | Christian Heimes | 2008-01-23 | 2 | -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 of | Guido van Rossum | 2008-01-23 | 2 | -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 Hettinger | 2008-01-23 | 1 | -2/+15 |
| | |||||
* | docstring and comment updates suggested by Giampaolo Rodola' | Gregory P. Smith | 2008-01-22 | 1 | -3/+3 |
| | |||||
* | Fix for #1087741 patch. | Georg Brandl | 2008-01-22 | 1 | -0/+7 |
| | |||||
* | - Fix Issue #1703448: A joined thread could show up in the | Gregory P. Smith | 2008-01-22 | 2 | -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. Smith | 2008-01-22 | 1 | -24/+8 |
| | |||||
* | accepts and closes issue #1221598: adds an optional callback to ftplib.FTP | Gregory P. Smith | 2008-01-22 | 1 | -17/+52 |
| | | | | storbinary() and storlines() methods. | ||||
* | Reformat some ugly code. | Georg Brandl | 2008-01-21 | 1 | -26/+27 |
| | |||||
* | Patch #1720595: add T_BOOL to the range of structmember types. | Georg Brandl | 2008-01-21 | 1 | -1/+7 |
| | | | | Patch by Angelo Mottola, reviewed by MvL, tests by me. | ||||
* | Add the correct build dir when building with pydebug. | Georg Brandl | 2008-01-21 | 1 | -0/+2 |
| | |||||
* | #1715: include sub-extension modules in pydoc text output. | Georg Brandl | 2008-01-21 | 2 | -1/+19 |
| | |||||
* | Follow PEP 8 in module docstring. | Walter Dörwald | 2008-01-21 | 1 | -5/+5 |
| | |||||
* | Issue #1882: when compiling code from a string, encoding cookies in the | Georg Brandl | 2008-01-21 | 1 | -1/+9 |
| | | | | second line of code were not always recognized correctly. | ||||
* | #1530959: change distutils build dir for --with-pydebug python builds. | Georg Brandl | 2008-01-21 | 1 | -0/+6 |
| | |||||
* | Clarify $ behavior in re docstring. #1631394. | Georg Brandl | 2008-01-21 | 1 | -3/+6 |
| | |||||
* | #1726198: replace while 1: fp.readline() with file iteration. | Georg Brandl | 2008-01-21 | 3 | -10/+3 |
| | |||||
* | Adapt pydoc to new doc URLs. | Georg Brandl | 2008-01-21 | 1 | -7/+6 |
| | |||||
* | Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. ↵ | Vinay Sajip | 2008-01-21 | 1 | -2/+5 |
| | | | | Patch thanks to Kathryn M. Kowalski. | ||||
* | #1555501: document plistlib and move it to the general library. | Georg Brandl | 2008-01-21 | 1 | -1/+1 |
| | |||||
* | #1269: fix a bug in pstats.add_callers() and add a unit test file for pstats. | Georg Brandl | 2008-01-21 | 2 | -1/+28 |
| | |||||
* | #1876: fix typos in test_operator. | Georg Brandl | 2008-01-20 | 1 | -4/+4 |
| | |||||
* | Fix test_pyclbr after urllib change. | Georg Brandl | 2008-01-20 | 1 | -0/+1 |
| | |||||
* | #1669: don't allow shutil.rmtree() to be called on a symlink. | Georg Brandl | 2008-01-20 | 2 | -0/+22 |
| | |||||
* | #1648: add sys.gettrace() and sys.getprofile(). | Georg Brandl | 2008-01-20 | 2 | -0/+31 |
| | |||||
* | #1664522: in urllib, don't read non-existing directories in ftp mode, | Georg Brandl | 2008-01-20 | 1 | -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 proxies | Georg Brandl | 2008-01-20 | 1 | -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 Brandl | 2008-01-20 | 3 | -5/+24 |
| | |||||
* | #1351692: in pprint, always call format() for dict and list items to enable | Georg Brandl | 2008-01-20 | 1 | -55/+60 |
| | | | | custom formatting of contents via subclassing PrettyPrinter. | ||||
* | Document that zipfile decryption is insanely slow and fix a typo and | Gregory P. Smith | 2008-01-20 | 1 | -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 one | Gregory P. Smith | 2008-01-20 | 2 | -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 curses | Andrew M. Kuchling | 2008-01-20 | 1 | -0/+46 |
| | |||||
* | Patch #1048820 from Stefan Wehr: add insert-mode editing to Textbox. | Andrew M. Kuchling | 2008-01-20 | 1 | -11/+25 |
| | | | | Fix an off-by-one error I noticed. | ||||
* | Fixes/Accepts Patch for issue1189216 - Work properly with archives | Gregory P. Smith | 2008-01-19 | 1 | -2/+2 |
| | | | | that have file headers past the 2**31 byte boundary. | ||||
* | Fix issue 1300: Quote command line arguments that contain a '|' character in | Gregory P. Smith | 2008-01-19 | 2 | -3/+5 |
| | | | | subprocess.list2cmdline (windows). | ||||
* | Undo an unnecessary else: and indentation that r60104 added. | Gregory P. Smith | 2008-01-19 | 1 | -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 gc | Gregory P. Smith | 2008-01-19 | 1 | -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 coverage | Gregory P. Smith | 2008-01-19 | 2 | -3/+5 |
| | | | | for inside of the final if needquotes: within subprocess.list2cmdline(). | ||||
* | #1663329: add os.closerange() to close a range of fds, | Georg Brandl | 2008-01-19 | 2 | -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. Kuchling | 2008-01-19 | 2 | -1/+18 |
| | | | | | | MaildirMessage. 2.5.2 bugfix candidate. | ||||
* | Fix #1146: TextWrap vs words 1-character shorter than the width. | Georg Brandl | 2008-01-19 | 2 | -1/+19 |
| | | | | Patch by Quentin Gallet-Gilles. | ||||
* | Fix #1679: "0x" was taken as a valid integer literal. | Georg Brandl | 2008-01-19 | 3 | -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 by | Facundo Batista | 2008-01-19 | 1 | -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. Kuchling | 2008-01-19 | 1 | -0/+36 |
| | | | | Contributed by John Lenton. | ||||
* | Disabled test_xmlrpc:test_404. It's causing lots of false alarms. | Christian Heimes | 2008-01-19 | 3 | -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. Kuchling | 2008-01-19 | 1 | -4/+41 |
| | | | | | | that will call .handle_timeout() method when no requests are received within the timeout period. | ||||
* | Update for threading.local test. | Christian Heimes | 2008-01-19 | 1 | -2/+18 |
| | |||||
* | Added unit test to verify that threading.local doesn't cause ref leaks. It ↵ | Christian Heimes | 2008-01-19 | 1 | -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 a | Facundo Batista | 2008-01-19 | 2 | -0/+9 |
| | | | | | just-created (and empty) instance. Added tests for this. Thanks Jonathan Share. |