| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | PEP8-ize test names | Antoine Pitrou | 2012-03-10 | 1 | -82/+54 |
| | | |||||
| * | Remove useless failOnException() method | Antoine Pitrou | 2012-03-10 | 1 | -86/+32 |
| | | |||||
| * | Merge with 3.2. | Georg Brandl | 2012-03-10 | 1 | -3/+8 |
| |\ | |||||
| | * | Closes #14244: add info about capturing groups and maxsplit to the docstring ↵ | Georg Brandl | 2012-03-10 | 1 | -3/+8 |
| | | | | | | | | | of re.split(). | ||||
| * | | Issue #14205: Fix test_dict.test_mutating_lookup() | Victor Stinner | 2012-03-09 | 1 | -9/+16 |
| | | | |||||
| * | | Relax timeout tests for weak Windows buildbot | Antoine Pitrou | 2012-03-09 | 1 | -7/+7 |
| | | | |||||
| * | | Issue #14231: Lib/test/crashers/borrowed_ref_1.py was fixed by ba6376dff6c4. | Victor Stinner | 2012-03-09 | 1 | -29/+0 |
| | | | |||||
| * | | Issue #14178: Problem deleting slices with steps != +1 in the _elementtree ↵ | Eli Bendersky | 2012-03-09 | 1 | -5/+86 |
| | | | | | | | | | | | | | module. Fixed the problem and added some tests. Closes #14178 | ||||
| * | | Issue #14211: Oops, I removed the wrong file :-) | Victor Stinner | 2012-03-08 | 2 | -38/+29 |
| | | | |||||
| * | | Issue #14211: _PyObject_GenericSetAttrWithDict() keeps a strong reference to | Victor Stinner | 2012-03-08 | 1 | -29/+0 |
| | | | | | | | | | | | the descriptor because it may be destroyed before being used, destroyed during the update of the dict for example. | ||||
| * | | Close #14199: _PyType_Lookup() and super_getattro() keep a strong reference to | Victor Stinner | 2012-03-08 | 2 | -36/+29 |
| | | | | | | | | | the type MRO to avoid a crash if the MRO is changed during the lookup. | ||||
| * | | merge 3.2 (#3787e896dbe9) | Benjamin Peterson | 2012-03-08 | 1 | -2/+17 |
| |\ \ | |/ | |||||
| | * | allow cycles throught the __dict__ slot to be cleared (closes #1469629) | Benjamin Peterson | 2012-03-08 | 1 | -2/+17 |
| | | | | | | | | | Patch from Armin, test from me. | ||||
| * | | make delegating generators say they running (closes #14220) | Benjamin Peterson | 2012-03-07 | 1 | -0/+72 |
| | | | |||||
| * | | merge 3.2 (#14212) | Benjamin Peterson | 2012-03-07 | 1 | -1/+13 |
| |\ \ | |/ | |||||
| | * | merge heads | Benjamin Peterson | 2012-03-07 | 2 | -10/+1 |
| | |\ | |||||
| | * | | keep the buffer object around while we're using it (closes #14212) | Benjamin Peterson | 2012-03-07 | 1 | -1/+13 |
| | | | | |||||
| * | | | Remove buggy change for #13719 in packaging | Éric Araujo | 2012-03-07 | 2 | -10/+1 |
| | | | | |||||
| * | | | Merge 3.2 | Éric Araujo | 2012-03-07 | 2 | -10/+1 |
| |\ \ \ | | |/ | |/| | |||||
| | * | | Backout buggy patch committed for #13719 | Éric Araujo | 2012-03-07 | 2 | -10/+1 |
| | |/ | |||||
| * | | merge | Brett Cannon | 2012-03-06 | 43 | -804/+1274 |
| |\ \ | |||||
| | * | | Remove a couple of local imports. | Antoine Pitrou | 2012-03-06 | 1 | -5/+4 |
| | | | | |||||
| | * | | Reap processes at test end to avoid false positives in reference leak detection. | Antoine Pitrou | 2012-03-06 | 1 | -0/+2 |
| | | | | |||||
| | * | | test_pty: fix ResourceWarning warnings | Victor Stinner | 2012-03-06 | 1 | -5/+14 |
| | | | | |||||
| | * | | Close #14205: dict lookup raises a RuntimeError if the dict is modified during | Victor Stinner | 2012-03-06 | 3 | -339/+21 |
| | | | | | | | | | | | | | | | | | | | | | | a lookup. "if you want to make a sandbox on top of CPython, you have to fix segfaults" so let's fix segfaults! | ||||
| | * | | Added delay before record creation. | Vinay Sajip | 2012-03-05 | 1 | -1/+1 |
| | | | | |||||
| | * | | Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows. | Antoine Pitrou | 2012-03-05 | 4 | -121/+459 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, add a multiprocessing.connection.wait(rlist, timeout=None) function for polling multiple objects at once. Patch by sbt. Complete changelist from sbt's patch: * Adds a wait(rlist, timeout=None) function for polling multiple objects at once. On Unix this is just a wrapper for select(rlist, [], [], timeout=None). * Removes use of the SentinelReady exception and the sentinels argument to certain methods. concurrent.futures.process has been changed to use wait() instead of SentinelReady. * Fixes bugs concerning PipeConnection.poll() and messages of zero length. * Fixes PipeListener.accept() to call ConnectNamedPipe() with overlapped=True. * Fixes Queue.empty() and SimpleQueue.empty() so that they are threadsafe on Windows. * Now PipeConnection.poll() and wait() will not modify the pipe except possibly by consuming a zero length message. (Previously poll() could consume a partial message.) * All of multiprocesing's pipe related blocking functions/methods are now interruptible by SIGINT on Windows. | ||||
| | * | | Merge. | Stefan Krah | 2012-03-05 | 6 | -10/+29 |
| | |\ \ | |||||
| | | * \ | Merge 3.2 | Éric Araujo | 2012-03-05 | 1 | -0/+1 |
| | | |\ \ | | | |/ | |||||
| | | | * | Fix NameError from #13719 fix | Éric Araujo | 2012-03-05 | 1 | -0/+1 |
| | | | | | |||||
| | | * | | Make packaging’ upload command work with bdist_msi products (#13719) | Éric Araujo | 2012-03-05 | 2 | -3/+12 |
| | | | | | |||||
| | | * | | Merge 3.2 | Éric Araujo | 2012-03-05 | 3 | -7/+15 |
| | | |\ \ | | | |/ | |||||
| | | | * | Backport minidom attribute tests from default (73c76466cf44). | Éric Araujo | 2012-03-05 | 1 | -4/+22 |
| | | | | | | | | | | | | | | | | | | | | | Some minidom code changed between 3.2 and 3.3, so to be sure to avoid differenced in behavior I’m backporting these tests added by MvL. | ||||
| | | | * | Make distutils’ upload command work with bdist_msi products (#13719). | Éric Araujo | 2012-03-05 | 2 | -6/+14 |
| | | | | | | | | | | | | | | | | | Patch by Ralf Schmitt. | ||||
| | | | * | Use raw string for a docstring that uses a backslash | Éric Araujo | 2012-03-05 | 1 | -1/+1 |
| | | | | | |||||
| | | * | | Improve packaging.database documentation | Éric Araujo | 2012-03-05 | 1 | -0/+1 |
| | | | | | |||||
| | * | | | Issue #14181: Preserve backwards compatibility for getbufferprocs that a) do | Stefan Krah | 2012-03-05 | 1 | -0/+6 |
| | |/ / | | | | | | | | | | | | | not adhere to the new documentation and b) manage to clobber view->obj before returning failure. | ||||
| | * | | Issue #14181: Test creating memoryviews from a static exporter with both | Stefan Krah | 2012-03-05 | 1 | -0/+94 |
| | | | | | | | | | | | | | view.obj==NULL and view.obj==base. | ||||
| | * | | Issue #12151: Added more info to diagnostics. | Vinay Sajip | 2012-03-05 | 1 | -4/+5 |
| | | | | |||||
| | * | | 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 | 3 | -87/+145 |
| | |\ \ | |||||
| | | * \ | Merged upstream changes. | Vinay Sajip | 2012-03-05 | 2 | -87/+143 |
| | | |\ \ | |||||
| | | | * | | Issue #14007: accept incomplete TreeBuilder objects (missing ↵ | Florent Xicluna | 2012-03-05 | 2 | -87/+143 |
| | | | | | | | | | | | | | | | | | | | | | start/end/data/close) for the Python implementation as well. Add disabled tests for the doctype() method. | ||||
| | | * | | | 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 | 1 | -0/+90 |
| | | | | | | | | | | | | | getbuffer redirection scheme. | ||||
| | * | | Issue #14168: Check for presence of _attrs before accessing it. | Martin v. Löwis | 2012-03-05 | 2 | -3/+16 |
| | | | | |||||
| | * | | Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive. | Meador Inge | 2012-03-05 | 2 | -17/+29 |
| | |\ \ | | |/ | |||||
