summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* #1178141: add addinfourl.code to get http status code from urllib.Georg Brandl2008-01-205-10/+36
|
* #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-202-2/+3
| | | | | blatant lie in a docstring (it is not useful for security regardless of how you spell it).
* note for r60121Gregory P. Smith2008-01-201-0/+3
|
* 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-204-13/+35
| | | | Fix an off-by-one error I noticed.
* Fixes/Accepts Patch for issue1189216 - Work properly with archivesGregory P. Smith2008-01-192-2/+5
| | | | 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.
* Missed one big file to split up.Georg Brandl2008-01-197-1166/+1175
|
* Split the monstrous C API manual files in smaller parts.Georg Brandl2008-01-1941-5068/+5118
|
* Bug 1296: restore text describing OptionGroupAndrew M. Kuchling2008-01-191-0/+29
|
* note about r60104Gregory P. Smith2008-01-191-0/+4
|
* 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).
* #1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods.Georg Brandl2008-01-192-6/+34
|
* 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().
* Patch #1019808 from Federico Schwindt: Return correct socket error whenAndrew M. Kuchling2008-01-193-9/+20
| | | | | | | | a default timeout has been set, by using getsockopt() to get the error condition (instead of trying another connect() call, which seems to be a Linuxism). 2.5 bugfix candidate, assuming no one reports any problems with this change.
* #1411695: clarify behavior of xml.sax.utils.[un]escape.Georg Brandl2008-01-191-2/+4
|
* #1663329: add os.closerange() to close a range of fds,Georg Brandl2008-01-195-7/+44
| | | | | 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-193-1/+22
| | | | Patch by Quentin Gallet-Gilles.
* Fix #1679: "0x" was taken as a valid integer literal.Georg Brandl2008-01-196-16/+45
| | | | | Fixes the tokenizer, tokenize.py and int() to reject this. Patches by Malte Helmert.
* Add itemAndrew M. Kuchling2008-01-191-0/+7
|
* missing from r60088 checkin.Skip Montanaro2008-01-191-0/+3
|
* Comment in NEWS regarding the change in trace.py.Facundo Batista2008-01-191-0/+3
|
* Fix #1693149. Now you can pass several modules separated byFacundo Batista2008-01-192-6/+10
| | | | | 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-195-9/+88
| | | | Contributed by John Lenton.
* Sort two names into positionAndrew M. Kuchling2008-01-191-2/+2
|
* #1782: don't leak in error case in PyModule_AddXxxConstant. Patch by Hrvoje ↵Georg Brandl2008-01-191-2/+14
| | | | Nikšić.
* Clarify thread.join() docs. #1873.Georg Brandl2008-01-191-6/+7
|
* 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.
* Add itemAndrew M. Kuchling2008-01-191-0/+7
|
* Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer ↵Andrew M. Kuchling2008-01-194-5/+60
| | | | | | that will call .handle_timeout() method when no requests are received within the timeout period.
* Fix typos.Georg Brandl2008-01-191-7/+7
|
* Polish sentenceAndrew M. Kuchling2008-01-191-4/+4
|
* 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?
* Polish sentenceAndrew M. Kuchling2008-01-191-2/+2
|
* Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for aFacundo Batista2008-01-193-0/+12
| | | | | just-created (and empty) instance. Added tests for this. Thanks Jonathan Share.
* Indentation normalization.Georg Brandl2008-01-191-8/+8
|
* Amend curses docs by info how to write non-ascii characters.Georg Brandl2008-01-191-0/+13
| | | | Thanks to Jeroen Ruigrok van der Werven.
* Fix markup.Georg Brandl2008-01-191-56/+56
|
* Several tweaks: add construction from strings and .from_decimal(), changeJeffrey Yasskin2008-01-193-17/+142
| | | | | __init__ to __new__ to enforce immutability, and remove "rational." from repr and the parens from str.
* This got fixed for classic classes in r60057,Guido van Rossum2008-01-181-17/+0
| | | | and backported to 2.5.2 in 60056.
* Better variable name in an example.Raymond Hettinger2008-01-181-2/+2
|
* Fix an edge case whereby the __del__() method of a classic class couldGuido van Rossum2008-01-181-0/+10
| | | | create a new weakref to the object.
* Silence Coverity false alerts with CIDs #172, #183, #184Christian Heimes2008-01-182-1/+3
|
* Added bytes and b'' as aliases for str and ''Christian Heimes2008-01-186-4/+43
|
* Note that genexps are function scopes too and therefore won't see class ↵Georg Brandl2008-01-181-1/+7
| | | | attributes.