summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* change AST codegen to use PyModule_AddIntMacroBenjamin Peterson2013-05-201-1/+1
* Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()Charles-Francois Natali2013-05-2012-715/+688
* Issue #17684: Fix some test_socket failures due to limited FD passing supportCharles-Francois Natali2013-05-201-6/+4
* Issue #17914: We can now inline _bsd_cpu_count().Charles-Francois Natali2013-05-201-22/+6
* Issue #17914: Remove OS-X special-case, and use the correct int type.Charles-Francois Natali2013-05-201-9/+6
* test that the compiler support -Werror=statement-after-declaration before usi...Benjamin Peterson2013-05-202-4/+65
* Merge #17973: Add FAQ entry for ([],)[0] += [1] both extending and raising.R David Murray2013-05-201-0/+83
|\
| * #17973: Add FAQ entry for ([],)[0] += [1] both extending and raising.R David Murray2013-05-201-0/+83
* | #17955: minor updates to Functional howtoAndrew Kuchling2013-05-201-53/+91
* | Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on anCharles-Francois Natali2013-05-206-26/+94
* | #14097: merge with 3.3.Ezio Melotti2013-05-202-344/+259
|\ \ | |/
| * #14097: improve the "introduction" page of the tutorial.Ezio Melotti2013-05-202-344/+259
* | merge 3.3Benjamin Peterson2013-05-201-0/+5
|\ \ | |/
| * add recursive repr testBenjamin Peterson2013-05-201-0/+5
* | Get rid of ugly code duplication for ElementTree.parse when the acceleratorEli Bendersky2013-05-202-32/+14
* | Add some testing to verify which module was imported in ET tests.Eli Bendersky2013-05-202-2/+15
* | Issue #17989: fix typo in error messageEli Bendersky2013-05-201-1/+1
|\ \ | |/
| * Issue #17989: fix typo in error messageEli Bendersky2013-05-191-1/+1
* | normalize whitespaceEli Bendersky2013-05-191-4/+0
* | Cleanup even more dead codeEli Bendersky2013-05-191-7/+0
* | Cleanup more old ET library leftoversEli Bendersky2013-05-192-18/+5
* | Issue #17988: remove unused alias for Element and rename the used oneEli Bendersky2013-05-192-19/+7
* | Clarify docs too: events can be any sequence (not that the C code supports it)Eli Bendersky2013-05-191-3/+3
* | _elementtree.XMLParser._setevents should support any sequence, not just tuplesEli Bendersky2013-05-193-58/+94
* | Try to make test more reliable (saw some sporadic failures on buildbots)Antoine Pitrou2013-05-191-3/+3
|\ \ | |/
| * Try to make test more reliable (saw some sporadic failures on buildbots)Antoine Pitrou2013-05-191-3/+3
* | Issue #11995: test_pydoc doesn't import all sys.path modules anymore.Antoine Pitrou2013-05-192-16/+63
|\ \ | |/
| * Issue #11995: test_pydoc doesn't import all sys.path modules anymore.Antoine Pitrou2013-05-192-15/+63
* | Issue #17812: Fixed quadratic complexity of base64.b32encode().Serhiy Storchaka2013-05-192-77/+51
|\ \ | |/
| * Issue #17812: Fixed quadratic complexity of base64.b32encode().Serhiy Storchaka2013-05-192-6/+8
* | Issue #17937: Try harder to collect cyclic garbage at shutdown.Antoine Pitrou2013-05-184-6/+32
* | Issue #17901: fix TreeBuilder construction for an explicit element_factory=NoneEli Bendersky2013-05-183-1/+8
|\ \ | |/
| * Issue #17901: fix TreeBuilder construction for an explicit element_factory=NoneEli Bendersky2013-05-183-1/+8
* | Re-enabled skipped test.Vinay Sajip2013-05-181-2/+2
* | Merge.Richard Oudkerk2013-05-181-5/+6
|\ \ | |/
| * Close file before reopening to keep Windows happy in test_sax.Richard Oudkerk2013-05-181-5/+6
* | Use PY_FORMAT_SIZE_T because Visual Studio does not understand %zd format.Richard Oudkerk2013-05-181-1/+1
* | Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of servic...Antoine Pitrou2013-05-183-1/+22
|\ \ | |/
| * Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of servic...Antoine Pitrou2013-05-183-1/+22
* | Issue #17989: element_setattro returned incorrect error value.Eli Bendersky2013-05-181-8/+8
|\ \ | |/
| * Issue #17989: element_setattro returned incorrect error value.Eli Bendersky2013-05-181-8/+8
* | Undo the deprecation of _asdict().Raymond Hettinger2013-05-184-16/+4
* | Deprecate nametuple._asdict()Raymond Hettinger2013-05-184-4/+16
* | mergeRaymond Hettinger2013-05-171-12/+17
|\ \ | |/
| * Update docstring for _asdict() to indicate it is obsolete.Raymond Hettinger2013-05-171-12/+17
* | rewrite the parsing of field names to be more consistent wrt recursive expansionBenjamin Peterson2013-05-172-63/+62
* | merge 3.3Benjamin Peterson2013-05-173-2/+13
|\ \ | |/
| * only recursively expand in the format spec (closes #17644)Benjamin Peterson2013-05-173-2/+13
* | FileIO.readall(): remove trailing space from an exception messageVictor Stinner2013-05-171-1/+1
* | Issue #15758: Fix FileIO.readall() so it no longer has O(n**2) complexity.Richard Oudkerk2013-05-172-66/+54