Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #17684: Fix some test_socket failures due to limited FD passing support | Charles-Francois Natali | 2013-05-20 | 1 | -6/+4 |
| | | | | on OS-X. Patch by Jeff Ramnani. | ||||
* | Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on an | Charles-Francois Natali | 2013-05-20 | 1 | -0/+10 |
| | | | | initial patch by Trent Nelson. | ||||
* | merge 3.3 | Benjamin Peterson | 2013-05-20 | 1 | -0/+5 |
|\ | |||||
| * | add recursive repr test | Benjamin Peterson | 2013-05-20 | 1 | -0/+5 |
| | | |||||
* | | Add some testing to verify which module was imported in ET tests. | Eli Bendersky | 2013-05-20 | 2 | -2/+15 |
| | | | | | | | | | | | | | | This is useful when mucking with import_fresh_module to either force or block importing of the _elementtree accelerator. These tests in place provide an immediate indication whether the accelerator was actually imported and overrode the classes it should have. | ||||
* | | Cleanup more old ET library leftovers | Eli Bendersky | 2013-05-19 | 1 | -11/+1 |
| | | |||||
* | | Issue #17988: remove unused alias for Element and rename the used one | Eli Bendersky | 2013-05-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | | Renaming to _Element_Py for clarity and moving it to a more logical location. _ElementInterface OTOH is unused and is therefore removed. Close #17988 | ||||
* | | _elementtree.XMLParser._setevents should support any sequence, not just tuples | Eli Bendersky | 2013-05-19 | 1 | -0/+35 |
| | | | | | | | | Also clean up some code around this | ||||
* | | Try to make test more reliable (saw some sporadic failures on buildbots) | Antoine Pitrou | 2013-05-19 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Try to make test more reliable (saw some sporadic failures on buildbots) | Antoine Pitrou | 2013-05-19 | 1 | -3/+3 |
| | | |||||
* | | Issue #11995: test_pydoc doesn't import all sys.path modules anymore. | Antoine Pitrou | 2013-05-19 | 1 | -15/+58 |
|\ \ | |/ | |||||
| * | Issue #11995: test_pydoc doesn't import all sys.path modules anymore. | Antoine Pitrou | 2013-05-19 | 1 | -15/+58 |
| | | |||||
* | | Issue #17901: fix TreeBuilder construction for an explicit element_factory=None | Eli Bendersky | 2013-05-18 | 1 | -0/+6 |
|\ \ | |/ | | | | | Based on report and patch by Aaron Oakley. | ||||
| * | Issue #17901: fix TreeBuilder construction for an explicit element_factory=None | Eli Bendersky | 2013-05-18 | 1 | -0/+6 |
| | | | | | | | | Based on report and patch by Aaron Oakley. | ||||
* | | Re-enabled skipped test. | Vinay Sajip | 2013-05-18 | 1 | -2/+2 |
| | | |||||
* | | Merge. | Richard Oudkerk | 2013-05-18 | 1 | -5/+6 |
|\ \ | |/ | |||||
| * | Close file before reopening to keep Windows happy in test_sax. | Richard Oudkerk | 2013-05-18 | 1 | -5/+6 |
| | | |||||
* | | Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of ↵ | Antoine Pitrou | 2013-05-18 | 1 | -0/+11 |
|\ \ | |/ | | | | | service using certificates with many wildcards (CVE-2013-2099). | ||||
| * | Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of ↵ | Antoine Pitrou | 2013-05-18 | 1 | -0/+11 |
| | | | | | | | | service using certificates with many wildcards (CVE-2013-2099). | ||||
* | | Undo the deprecation of _asdict(). | Raymond Hettinger | 2013-05-18 | 1 | -5/+2 |
| | | | | | | | | Backed out changeset c4ca39bece9d | ||||
* | | Deprecate nametuple._asdict() | Raymond Hettinger | 2013-05-18 | 1 | -2/+5 |
| | | |||||
* | | rewrite the parsing of field names to be more consistent wrt recursive expansion | Benjamin Peterson | 2013-05-17 | 1 | -1/+9 |
| | | |||||
* | | merge 3.3 | Benjamin Peterson | 2013-05-17 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | only recursively expand in the format spec (closes #17644) | Benjamin Peterson | 2013-05-17 | 1 | -0/+2 |
| | | |||||
| * | complain about "global __class__" in a class body (closes #17983) | Benjamin Peterson | 2013-05-15 | 1 | -0/+4 |
| | | |||||
| * | when arguments are cells clear the locals slot (backport of #17927) | Benjamin Peterson | 2013-05-15 | 2 | -0/+42 |
| | | |||||
* | | reset __class__, so multiple runs don't fail (closes #17999) | Benjamin Peterson | 2013-05-17 | 1 | -0/+5 |
| | | |||||
* | | Issue #14596: The struct.Struct() objects now use more compact implementation. | Serhiy Storchaka | 2013-05-17 | 1 | -7/+2 |
| | | |||||
* | | Issue #17992: Add timeouts to asyncore and asynchat tests so that they won't ↵ | Giampaolo Rodola' | 2013-05-16 | 2 | -10/+32 |
| | | | | | | | | accidentally hang. | ||||
* | | ftplib tests: provide a global socket's TIMEOUT variable and use it ↵ | Giampaolo Rodola' | 2013-05-16 | 1 | -14/+15 |
| | | | | | | | | everywhere so that failing tests won't accidentally hang | ||||
* | | hide the __class__ closure from the class body (#12370) | Benjamin Peterson | 2013-05-15 | 1 | -2/+26 |
| | | |||||
* | | Backout c89febab4648 following private feedback by Guido. | Antoine Pitrou | 2013-05-14 | 2 | -54/+1 |
| | | | | | | | | (Issue #17807: Generators can now be finalized even when they are part of a reference cycle) | ||||
* | | Fix ResourceWarnings in test_sax | Antoine Pitrou | 2013-05-13 | 1 | -1/+4 |
|\ \ | |/ | |||||
| * | Fix ResourceWarnings in test_sax | Antoine Pitrou | 2013-05-13 | 1 | -1/+4 |
| | | |||||
* | | when an argument is a cell, set the local copy to NULL (see #17927) | Benjamin Peterson | 2013-05-12 | 1 | -0/+13 |
| | | |||||
* | | Issue #17606: Fixed support of encoded byte strings in the XMLGenerator | Serhiy Storchaka | 2013-05-12 | 1 | -0/+18 |
|\ \ | |/ | | | | | | | characters() and ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez. | ||||
| * | Issue #17606: Fixed support of encoded byte strings in the XMLGenerator | Serhiy Storchaka | 2013-05-12 | 1 | -0/+18 |
| | | | | | | | | | | characters() and ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez. | ||||
| * | Back out patch for #1159051, which caused backwards compatibility problems. | Georg Brandl | 2013-05-12 | 3 | -42/+0 |
| | | |||||
* | | merge with 3.3 | Georg Brandl | 2013-05-12 | 1 | -0/+31 |
|\ \ | |/ | |||||
| * | merge with 3.2 | Georg Brandl | 2013-05-12 | 1 | -0/+31 |
| |\ | |||||
| | * | Issue #17915: Fix interoperability of xml.sax with file objects returned by | Georg Brandl | 2013-05-12 | 1 | -0/+31 |
| | | | | | | | | | | | | codecs.open(). | ||||
| | * | Issue #1159051: Back out a fix for handling corrupted gzip files that | Georg Brandl | 2013-05-12 | 2 | -31/+0 |
| | | | | | | | | | | | | broke backwards compatibility. | ||||
| | * | Issue #17843: Remove bz2 test data that triggers antivirus warnings. | Georg Brandl | 2013-05-12 | 2 | -7/+6 |
| | | | |||||
| | * | Issue #15535: Fix pickling of named tuples. | Georg Brandl | 2013-05-12 | 1 | -0/+1 |
| | | | |||||
| | * | Close #17666: Fix reading gzip files with an extra field. | Serhiy Storchaka | 2013-04-08 | 1 | -0/+7 |
| | | | |||||
* | | | Diagnostics collected, test disabled for now. | Vinay Sajip | 2013-05-11 | 1 | -1/+1 |
| | | | |||||
* | | | Re-enabled test with more diagnostics. | Vinay Sajip | 2013-05-11 | 1 | -1/+3 |
| | | | |||||
* | | | merge 3.3 | Benjamin Peterson | 2013-05-11 | 1 | -1/+2 |
|\ \ \ | |/ / | |||||
| * | | only close non-None files | Benjamin Peterson | 2013-05-11 | 1 | -1/+2 |
| | | | |||||
* | | | remove unused import | Benjamin Peterson | 2013-05-11 | 1 | -1/+0 |
| | | |