summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Try to fix sporadic failure in test_thread/test_threadingAntoine Pitrou2011-04-041-1/+7
|
* Issue #11761: make tests for gc.get_count() less fragileAntoine Pitrou2011-04-041-16/+27
|
* Merge 3.1Kristjan Valur Jonsson2011-03-303-0/+67
|\
| * Merge issue 11662.Guido van Rossum2011-03-293-0/+67
| |\
| | * Issue 11662: Fix vulnerability in urllib/urllib2.guido@google.com2011-03-293-0/+67
| | | | | | | | | | | | (This version is a cleaned-up backport of a fix by Senthil Kumaran.)
* | | Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle.Kristjan Valur Jonsson2011-03-301-0/+5
|/ / | | | | | | | | ti can raise an exception even if PyLong_Check() has succeeded.
* | Closes #11696: Fix ID generation in msilib.Martin v. Löwis2011-03-272-3/+48
| | | | | | | | Patch by Mark Mc Mahon.
* | Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when ↵Mark Dickinson2011-03-272-1/+5
| | | | | | | | trying to pack a negative (in-range) integer.
* | Fix short file name generation in bdist_msi.Martin v. Löwis2011-03-271-8/+17
| | | | | | | | | | Patch by Christoph Gohlke. Closes #7639.
* | revert unintended changesBenjamin Peterson2011-03-262-18/+1
| |
* | check possible recursive _as_parameter_ to prevent segfault (closes #1838)Benjamin Peterson2011-03-263-1/+30
| |
* | Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459.Ross Lagerwall2011-03-261-0/+1
| | | | | | | | Patch by Ben Hayden.
* | Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects.Mark Dickinson2011-03-262-1/+18
| |
* | <Home> toggle failing on Tk 8.5, causing IDLE exits. Issue #4676Kurt B. Kaiser2011-03-262-13/+13
| |
* | #9557: eliminate 3 seconds of static overhead from test_mailbox.R David Murray2011-03-251-7/+11
| | | | | | | | | | This patch doesn't quite fix the 'run in a VM with Samba share' timing problem, but it should at least make it better.
* | #2650: Refactor re.escape to use enumerate().Ezio Melotti2011-03-251-2/+1
| |
* | #2650: Add tests with non-ascii chars for re.escape.Ezio Melotti2011-03-251-0/+16
| |
* | #2650: Refactor the tests for re.escape.Ezio Melotti2011-03-251-22/+40
| |
* | Merge 3.1Kurt B. Kaiser2011-03-242-3/+11
|\ \ | |/ |/|
| * Merge 3.1Kurt B. Kaiser2011-03-242-3/+11
| |\
| | * <Home> toggle non-functional when NumLock setKurt B. Kaiser2011-03-212-3/+11
| | | | | | | | | | | | on Windows. Issue3851.
* | | #11606: improved body_encode algorithm, no longer produces overlong linesR David Murray2011-03-242-61/+103
|/ / | | | | | | Algorithm and initial patch by Michael Henry.
* | test_multiprocessing: use assertLess() to see the timeout on errorVictor Stinner2011-03-241-1/+1
| |
* | #11590: fix quoprimime decode handling of empty strings and line endings.R David Murray2011-03-232-3/+18
| |
* | #11589: add additional tests for the email quoprimime module.R David Murray2011-03-231-14/+178
| | | | | | | | Patch by Michael Henry.
* | Fix obscure set crashers (#8420). Backport of d56b3cafb1e6, reviewed by ↵Éric Araujo2011-03-231-0/+34
| | | | | | | | Raymond.
* | Issue 10787: Document the probability density function for random.gammavariate.Raymond Hettinger2011-03-221-0/+6
|/
* Issue #8651: PyArg_Parse*() functions raise an OverflowError if the fileVictor Stinner2011-03-211-0/+18
| | | | | doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1 bytes).
* Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejarVictor Stinner2011-03-211-6/+12
| | | | for expiration year greater than 2038 on 32-bit systems.
* Call reap_children() where appropriateAntoine Pitrou2011-03-202-5/+11
|
* Issue #11567 - Let's have the DOCTYPE as HTML instead of XHTML.Senthil Kumaran2011-03-201-4/+3
|
* Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-194-4/+19
| | | | unbuffered pipes, such that select() works properly on them.
* Error message in http.server code. Missed to update in 3.1 branch initially.Senthil Kumaran2011-03-171-9/+14
|
* #11401: handle headers with no value.R David Murray2011-03-162-1/+8
|
* #9298: restore proper folding of base64 encoded bodies.R David Murray2011-03-162-6/+16
| | | | Patch by Yves Dorfsman.
* Issue #11569: use absolute path to the sysctl command in multiprocessing toRonald Oussoren2011-03-161-1/+4
| | | | | ensure that it will be found regardless of the shell PATH. This ensures that multiprocessing.cpu_count works on default installs of MacOSX.
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-1660-79/+79
|
* Fix whitespace in test_subprocessAntoine Pitrou2011-03-151-1/+1
|
* On behalf of Tarek: Issue #11501: disutils.archive_utils.make_zipfile noAntoine Pitrou2011-03-155-12/+105
| | | | | longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart.
* #11555: update doc for 3.x change to as_string mangle_from default.R David Murray2011-03-151-2/+1
|
* Fix the @test_NNNN_tmp file terds being left in whatever your $PWD wasGregory P. Smith2011-03-151-2/+5
| | | | when test_subprocess was run.
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-1522-25/+25
|
* Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified ↵Ronald Oussoren2011-03-142-49/+90
| | | | | | IP addresses in the proxy exception list Patch by Scott Wilson.
* Fix #11491. When dbm.open was called with a file which already exists andbriancurtin2011-03-142-3/+11
| | | | | | the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing.
* #11488: Add tests for writelines method of SpooledTemporaryFile.R David Murray2011-03-141-0/+17
| | | | Patch by Evan Dandrea.
* #11490: EACCES can also mean command not foundR David Murray2011-03-141-1/+2
|
* Issue 11131: Fix sign of zero result on decimal.Decimal plus and minus ↵Mark Dickinson2011-03-122-8/+81
| | | | operations in ROUND_FLOOR rounding mode.
* Issue #5622: Fix curses.wrapper to raise correct exception if cursesNed Deily2011-03-091-4/+5
| | | | initialization fails.
* Issue #11444: Lock handlers while flushing/closing during shutdown.Vinay Sajip2011-03-081-0/+3
|
* transform izip_longest #11424Benjamin Peterson2011-03-083-16/+32
|