summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of ↵Antoine Pitrou2013-05-182-1/+19
|\ | | | | | | service using certificates with many wildcards (CVE-2013-2099).
| * Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of ↵Antoine Pitrou2013-05-182-1/+19
| | | | | | | | service using certificates with many wildcards (CVE-2013-2099).
* | Undo the deprecation of _asdict().Raymond Hettinger2013-05-182-8/+2
| | | | | | | | Backed out changeset c4ca39bece9d
* | Deprecate nametuple._asdict()Raymond Hettinger2013-05-182-2/+8
| |
* | mergeRaymond Hettinger2013-05-171-12/+17
|\ \ | |/
| * Update docstring for _asdict() to indicate it is obsolete.Raymond Hettinger2013-05-171-12/+17
| | | | | | | | | | | | Use the cleaner looking @property style for __dict__. Move _replace() to be just after make() to indicate that it is a core method on named tuples.
* | rewrite the parsing of field names to be more consistent wrt recursive expansionBenjamin Peterson2013-05-171-1/+9
| |
* | merge 3.3Benjamin Peterson2013-05-171-0/+2
|\ \ | |/
| * only recursively expand in the format spec (closes #17644)Benjamin Peterson2013-05-171-0/+2
| |
* | reset __class__, so multiple runs don't fail (closes #17999)Benjamin Peterson2013-05-171-0/+5
| |
* | mergeRaymond Hettinger2013-05-171-4/+1
|\ \ | |/
| * Remove unnecessary exception handler.Raymond Hettinger2013-05-171-4/+1
| |
* | Issue #14596: The struct.Struct() objects now use more compact implementation.Serhiy Storchaka2013-05-171-7/+2
| |
* | Closes #17981: Merged fix from 3.3.Vinay Sajip2013-05-161-0/+1
|\ \ | |/
| * Issue #17981: Closed socket on error in SysLogHandler.Vinay Sajip2013-05-161-0/+1
| |
| * complain about "global __class__" in a class body (closes #17983)Benjamin Peterson2013-05-151-0/+4
| |
* | rather than passing locals to the class body, just execute the class body in ↵Benjamin Peterson2013-05-162-2/+2
| | | | | | | | the proper environment
* | Issue #17992: Add timeouts to asyncore and asynchat tests so that they won't ↵Giampaolo Rodola'2013-05-162-10/+32
| | | | | | | | accidentally hang.
* | ftplib tests: provide a global socket's TIMEOUT variable and use it ↵Giampaolo Rodola'2013-05-161-14/+15
| | | | | | | | everywhere so that failing tests won't accidentally hang
* | hide the __class__ closure from the class body (#12370)Benjamin Peterson2013-05-152-3/+28
| |
* | - Fix typos in the multiprocessing module.doko@ubuntu.com2013-05-151-1/+1
|\ \ | |/
| * - Fix typos in the multiprocessing module.doko@ubuntu.com2013-05-151-1/+1
| |
* | - Issue #17754: Make ctypes.util.find_library() independent of the locale.doko@ubuntu.com2013-05-151-1/+1
|\ \ | |/
| * - Issue #17754: Make ctypes.util.find_library() independent of the locale.doko@ubuntu.com2013-05-151-1/+1
| |
| * when arguments are cells clear the locals slot (backport of #17927)Benjamin Peterson2013-05-152-0/+42
| |
* | Backout c89febab4648 following private feedback by Guido.Antoine Pitrou2013-05-142-54/+1
| | | | | | | | (Issue #17807: Generators can now be finalized even when they are part of a reference cycle)
* | Fix ResourceWarnings in test_saxAntoine Pitrou2013-05-131-1/+4
|\ \ | |/
| * Fix ResourceWarnings in test_saxAntoine Pitrou2013-05-131-1/+4
| |
* | Merge with 3.3Terry Jan Reedy2013-05-131-1/+2
|\ \ | |/
| * Silence unclosed open file ResourceWarning.Terry Jan Reedy2013-05-131-1/+2
| |
* | Complete 2 to 3 conversionTerry Jan Reedy2013-05-131-1/+1
|\ \ | |/
| * Complete 2 to 3 conversionTerry Jan Reedy2013-05-131-1/+1
| |
* | merge 3.3Benjamin Peterson2013-05-131-2/+2
|\ \ | |/
| * use correct format code for exceptionsBenjamin Peterson2013-05-131-2/+2
| |
| * mergeGeorg Brandl2013-05-122-2/+2
| |\
| | * bump to 3.3.2Georg Brandl2013-05-122-2/+2
| | |
* | | when an argument is a cell, set the local copy to NULL (see #17927)Benjamin Peterson2013-05-121-0/+13
| | |
* | | Issue #17606: Fixed support of encoded byte strings in the XMLGeneratorSerhiy Storchaka2013-05-122-0/+22
|\ \ \ | |/ / | | | | | | | | | characters() and ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez.
| * | Issue #17606: Fixed support of encoded byte strings in the XMLGeneratorSerhiy Storchaka2013-05-122-0/+22
| |/ | | | | | | | | characters() and ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez.
* | merge with 3.3Georg Brandl2013-05-122-3/+75
|\ \ | |/
| * Closes issue #17732: ignore install-directory specific options inGeorg Brandl2013-05-122-3/+75
| | | | | | | | distutils.cfg when a venv is active.
| * Back out patch for #1159051, which caused backwards compatibility problems.Georg Brandl2013-05-124-79/+44
| |
* | merge with 3.3Georg Brandl2013-05-122-0/+36
|\ \ | |/
| * merge with 3.2Georg Brandl2013-05-122-0/+36
| |\
| | * Issue #17915: Fix interoperability of xml.sax with file objects returned byGeorg Brandl2013-05-122-0/+36
| | | | | | | | | | | | codecs.open().
| | * Issue #1159051: Back out a fix for handling corrupted gzip files thatGeorg Brandl2013-05-123-66/+38
| | | | | | | | | | | | broke backwards compatibility.
| | * Issue #17843: Remove bz2 test data that triggers antivirus warnings.Georg Brandl2013-05-122-7/+6
| | |
| | * Issue #15535: Fix pickling of named tuples.Georg Brandl2013-05-122-0/+5
| | |
| | * Close #17666: Fix reading gzip files with an extra field.Serhiy Storchaka2013-04-082-1/+9
| | |
| * | merge headsGeorg Brandl2013-05-121-0/+5
| |\ \