Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | xml.dom.minidom: add more __slots__ to limit resource usage. | Florent Xicluna | 2012-03-05 | 2 | -6/+8 |
| | |||||
* | xml.dom: fix typo, drop unused imports. | Florent Xicluna | 2012-03-05 | 2 | -5/+1 |
| | |||||
* | Flatten nested try ... finally, try ... except. | Florent Xicluna | 2012-03-05 | 1 | -6/+5 |
| | |||||
* | Merge. | Stefan Krah | 2012-03-05 | 5 | -110/+149 |
|\ | |||||
| * | Merged upstream changes. | Vinay Sajip | 2012-03-05 | 4 | -110/+147 |
| |\ | |||||
| | * | Issue #14007: accept incomplete TreeBuilder objects (missing ↵ | Florent Xicluna | 2012-03-05 | 3 | -87/+147 |
| | | | | | | | | | | | | start/end/data/close) for the Python implementation as well. Add disabled tests for the doctype() method. | ||||
| | * | Issue #14007: drop unused TreeBuilder().xml. | Florent Xicluna | 2012-03-05 | 1 | -23/+0 |
| | | | |||||
| * | | Added more diagnostics for diagnosing #12151. | Vinay Sajip | 2012-03-05 | 1 | -0/+2 |
| |/ | |||||
* | | Issue #10181: The decision was to raise a buffer error in memory_exit() | Stefan Krah | 2012-03-05 | 1 | -5/+6 |
|/ | | | | | if the view has exported buffers. Make this official by uncommenting a test case. | ||||
* | Issue #14181: Allow memoryview construction from an object that uses the | Stefan Krah | 2012-03-05 | 3 | -13/+105 |
| | | | | getbuffer redirection scheme. | ||||
* | 3.3.0a1 is done. | Georg Brandl | 2012-03-05 | 2 | -1/+13 |
| | |||||
* | Issue #14168: Check for presence of _attrs before accessing it. | Martin v. Löwis | 2012-03-05 | 3 | -3/+18 |
| | |||||
* | Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive. | Meador Inge | 2012-03-04 | 3 | -17/+33 |
|\ | |||||
| * | Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive. | Meador Inge | 2012-03-04 | 3 | -17/+33 |
| | | |||||
* | | Fix some set algebra methods of WeakSet objects. | Antoine Pitrou | 2012-03-04 | 2 | -33/+30 |
|\ \ | |/ | |||||
| * | Fix some set algebra methods of WeakSet objects. | Antoine Pitrou | 2012-03-04 | 2 | -33/+30 |
| | | |||||
* | | Issue #14171: Add valgrind suppressions for OpenSSL issue. | Martin v. Löwis | 2012-03-04 | 1 | -0/+32 |
| | | | | | | | | Patch by Zooko O'Whielacronx. | ||||
* | | Merge | Antoine Pitrou | 2012-03-04 | 3 | -14/+17 |
|\ \ | |||||
| * | | Fix spelling. | Georg Brandl | 2012-03-04 | 1 | -0/+0 |
| | | | |||||
| * | | Enable PGI/PGO builds for x64 python3.dll | Martin v. Löwis | 2012-03-04 | 1 | -6/+6 |
| | | | |||||
| * | | Generate product code UUID from download URL. | Martin v. Löwis | 2012-03-04 | 1 | -8/+11 |
| | | | |||||
* | | | Port 2.7 fix for sporadic failure in test_weakset. | Antoine Pitrou | 2012-03-04 | 1 | -5/+2 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | Port 2.7 fix for sporadic failure in test_weakset. | Antoine Pitrou | 2012-03-04 | 1 | -5/+2 |
| | | |||||
* | | Issue #14166: Pickler objects now have an optional `dispatch_table` ↵ | Antoine Pitrou | 2012-03-04 | 7 | -15/+228 |
| | | | | | | | | | | | | attribute which allows to set custom per-pickler reduction functions. Patch by sbt. | ||||
* | | Added tag v3.3.0a1 for changeset f1a9a6505731 | Georg Brandl | 2012-03-04 | 1 | -0/+1 |
| | | |||||
* | | Update copyright years and version name.v3.3.0a1 | Georg Brandl | 2012-03-04 | 4 | -4/+4 |
| | | |||||
* | | Bump to 3.3.0a1. | Georg Brandl | 2012-03-04 | 6 | -10/+10 |
| | | |||||
* | | Sort and clean up suspicious ignore file. | Georg Brandl | 2012-03-04 | 1 | -173/+165 |
| | | |||||
* | | Fix invalid markup and update suspicious ignores. | Georg Brandl | 2012-03-04 | 3 | -10/+20 |
| | | |||||
* | | Regenerate pydoc topics. | Georg Brandl | 2012-03-04 | 1 | -24/+25 |
| | | |||||
* | | Fix encoding handling of the pydoc-topics writer. | Georg Brandl | 2012-03-04 | 1 | -2/+3 |
| | | |||||
* | | Updated tokenize to support the inverse byte literals new in 3.3 | Armin Ronacher | 2012-03-04 | 2 | -6/+28 |
| | | |||||
* | | Basic documentation for PEP 414 | Armin Ronacher | 2012-03-04 | 1 | -1/+9 |
| | | |||||
* | | Basic support for PEP 414 without docs or tests. | Armin Ronacher | 2012-03-04 | 3 | -11/+32 |
| | | |||||
* | | fix trailing whitespace | Eli Bendersky | 2012-03-04 | 1 | -1/+0 |
| | | |||||
* | | Issue #14128: Exposing Element as an actual type from _elementtree, rather ↵ | Eli Bendersky | 2012-03-04 | 4 | -91/+198 |
| | | | | | | | | | | | | | | | | than a factory function. This makes the C implementation more aligned with the Python implementation. Also added some tests to ensure that Element is now a type and that it can be subclassed. | ||||
* | | Close #14085: remove assertions from PyUnicode_WRITE macro | Victor Stinner | 2012-03-04 | 2 | -4/+10 |
| | | | | | | | | | | Add checks in PyUnicode_WriteChar() and convert PyUnicode_New() assertion to a test raising a Python exception. | ||||
* | | Fixed problem with diagnostic output. | Vinay Sajip | 2012-03-03 | 1 | -1/+2 |
| | | |||||
* | | - Issue #14177: marshal.loads() now raises TypeError when given an unicode | Antoine Pitrou | 2012-03-03 | 5 | -6/+15 |
|\ \ | |/ | | | | | string. Patch by Guilherme Gonçalves. | ||||
| * | Issue #14177: marshal.loads() now raises TypeError when given an unicode string. | Antoine Pitrou | 2012-03-03 | 5 | -6/+15 |
| | | | | | | | | Patch by Guilherme Gonçalves. | ||||
* | | Close #13550: Remove the debug machinery from the threading module: remove | Victor Stinner | 2012-03-03 | 2 | -134/+21 |
| | | | | | | | | verbose arguments from all threading classes and functions. | ||||
* | | Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple | Victor Stinner | 2012-03-02 | 7 | -20/+106 |
| | | | | | | | | Add a private API to convert an int or float to a C timespec structure. | ||||
* | | Simplify code in marshal.c. | Antoine Pitrou | 2012-03-02 | 1 | -7/+1 |
| | | |||||
* | | Issue #14172: Fix reference leak when marshalling a buffer-like object ↵ | Antoine Pitrou | 2012-03-02 | 3 | -4/+30 |
|\ \ | |/ | | | | | (other than a bytes object). | ||||
| * | Issue #14172: Fix reference leak when marshalling a buffer-like object ↵ | Antoine Pitrou | 2012-03-02 | 3 | -4/+30 |
| | | | | | | | | (other than a bytes object). | ||||
| * | merge 3.2 heads | Eli Bendersky | 2012-03-02 | 4 | -19/+41 |
| |\ | |||||
* | \ | Merge 3.2 | Eli Bendersky | 2012-03-02 | 1 | -0/+8 |
|\ \ \ | |/ / | |||||
| * | | Issue #11379: add a note in xml.dom.minidom suggesting to use etree in some ↵ | Eli Bendersky | 2012-03-02 | 1 | -0/+8 |
| | | | | | | | | | | | | cases | ||||
* | | | Closes #14158: merged test file resilience fix from 3.2. | Vinay Sajip | 2012-03-02 | 3 | -10/+30 |
|\ \ \ | | |/ | |/| | |||||
| * | | Closes #14158: improved resilience to test files left behind. | Vinay Sajip | 2012-03-02 | 3 | -11/+33 |
| | | |