Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #17532: merge | Ned Deily | 2013-05-22 | 3 | -2/+4 |
|\ | |||||
| * | Issue #17532: Always include Options menu for IDLE on OS X. | Ned Deily | 2013-05-22 | 3 | -2/+4 |
| | | | | | | | | Patch by Guilherme Simões. | ||||
* | | merge 3.3 | Benjamin Peterson | 2013-05-22 | 1 | -0/+6 |
|\ \ | |/ | |||||
| * | add test for inequality | Benjamin Peterson | 2013-05-22 | 1 | -0/+6 |
| | | |||||
* | | Issue #16986: ElementTree now correctly parses a string input not only when | Serhiy Storchaka | 2013-05-22 | 1 | -15/+30 |
|\ \ | |/ | | | | | an internal XML encoding is UTF-8 or US-ASCII. | ||||
| * | Issue #16986: ElementTree now correctly parses a string input not only when | Serhiy Storchaka | 2013-05-22 | 1 | -15/+30 |
| | | | | | | | | an internal XML encoding is UTF-8 or US-ASCII. | ||||
* | | Issue #17900: Allowed pickling of recursive OrderedDicts. Decreased pickled | Serhiy Storchaka | 2013-05-21 | 2 | -6/+12 |
| | | | | | | | | size and pickling time. | ||||
* | | Backed out changeset c0f2b038fc12 | Charles-François Natali | 2013-05-21 | 1 | -6/+6 |
| | | |||||
* | | Issue #17683: socket module: return AF_UNIX addresses in Linux abstract | Charles-François Natali | 2013-05-21 | 1 | -6/+6 |
| | | | | | | | | namespace as string. | ||||
* | | #14146: merge with 3.3. | Roger Serwy | 2013-05-21 | 1 | -0/+30 |
|\ \ | |/ | |||||
| * | #14146: Highlight source line while debugging on Windows. | Roger Serwy | 2013-05-21 | 1 | -0/+30 |
| | | |||||
* | | Closes #17743: Merged fix from 3.3. | Vinay Sajip | 2013-05-20 | 1 | -13/+14 |
|\ \ | |/ | |||||
| * | Issue #17743: Now use extended syntax of set command in .bat files. | Vinay Sajip | 2013-05-20 | 1 | -13/+14 |
| | | |||||
* | | Closes #17744: Merged fix from 3.3. | Vinay Sajip | 2013-05-20 | 1 | -4/+8 |
|\ \ | |/ | |||||
| * | Issue #17744: Now unset VIRTUAL_ENV environment variable when deactivating. | Vinay Sajip | 2013-05-20 | 1 | -4/+8 |
| | | |||||
* | | 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 | 2 | -22/+13 |
| | | | | | | | | 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 |
| | | |||||
* | | Get rid of ugly code duplication for ElementTree.parse when the accelerator | Eli Bendersky | 2013-05-20 | 1 | -28/+11 |
| | | | | | | | | | | is imported. Instead, ElementTree.parse can look for a special internal method defined by the accelerator. | ||||
* | | 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. | ||||
* | | normalize whitespace | Eli Bendersky | 2013-05-19 | 1 | -4/+0 |
| | | |||||
* | | Cleanup even more dead code | Eli Bendersky | 2013-05-19 | 1 | -7/+0 |
| | | |||||
* | | Cleanup more old ET library leftovers | Eli Bendersky | 2013-05-19 | 2 | -18/+5 |
| | | |||||
* | | Issue #17988: remove unused alias for Element and rename the used one | Eli Bendersky | 2013-05-19 | 2 | -19/+7 |
| | | | | | | | | | | | | | | 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 | 2 | -12/+52 |
| | | | | | | | | 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 #17812: Fixed quadratic complexity of base64.b32encode(). | Serhiy Storchaka | 2013-05-19 | 1 | -77/+48 |
|\ \ | |/ | | | | | Optimize base64.b32encode() and base64.b32decode() (speed up to 3x). | ||||
| * | Issue #17812: Fixed quadratic complexity of base64.b32encode(). | Serhiy Storchaka | 2013-05-19 | 1 | -6/+6 |
| | | |||||
* | | 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 | 2 | -1/+19 |
|\ \ | |/ | | | | | 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 | 2 | -1/+19 |
| | | | | | | | | service using certificates with many wildcards (CVE-2013-2099). | ||||
* | | Undo the deprecation of _asdict(). | Raymond Hettinger | 2013-05-18 | 2 | -8/+2 |
| | | | | | | | | Backed out changeset c4ca39bece9d | ||||
* | | Deprecate nametuple._asdict() | Raymond Hettinger | 2013-05-18 | 2 | -2/+8 |
| | | |||||
* | | merge | Raymond Hettinger | 2013-05-17 | 1 | -12/+17 |
|\ \ | |/ | |||||
| * | Update docstring for _asdict() to indicate it is obsolete. | Raymond Hettinger | 2013-05-17 | 1 | -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 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 |
| | | |||||
* | | reset __class__, so multiple runs don't fail (closes #17999) | Benjamin Peterson | 2013-05-17 | 1 | -0/+5 |
| | | |||||
* | | merge | Raymond Hettinger | 2013-05-17 | 1 | -4/+1 |
|\ \ | |/ | |||||
| * | Remove unnecessary exception handler. | Raymond Hettinger | 2013-05-17 | 1 | -4/+1 |
| | | |||||
* | | Issue #14596: The struct.Struct() objects now use more compact implementation. | Serhiy Storchaka | 2013-05-17 | 1 | -7/+2 |
| | |