summaryrefslogtreecommitdiff
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #14104: Implement time.monotonic() on Mac OS X,Victor Stinner2012-03-131-0/+3
| | | | patch written by Nicholas Riley.
* str.format_map tests don't do what they say: fix to actually implement the ↵Eric V. Smith2012-03-121-0/+1
|\ | | | | | | intent of the test. Closes #13450. Patch by Akira Li.
| * str.format_map tests don't do what they say: fix to actually implement the ↵Eric V. Smith2012-03-121-0/+1
| | | | | | | | intent of the test. Closes #13450.
* | #13394: add more tests for the aifc module and use warnings.warn instead of ↵Ezio Melotti2012-03-121-0/+2
|\ \ | |/ | | | | print. Patch by Oleg Plakhotnyuk.
* | Head merge.Łukasz Langa2012-03-121-0/+1
|\ \
| * | Fixes #13842: cannot pickle Ellipsis or NotImplemented.Łukasz Langa2012-03-121-0/+1
| | | | | | | | | | | | Thanks for James Sanders for the bug report and the patch.
* | | give the AST class a __dict__Benjamin Peterson2012-03-121-0/+2
|/ /
* | Make test_logging no longer fail if zlib not present. Closes #14256. Patch ↵Eric V. Smith2012-03-111-0/+1
| | | | | | | | by Pedro Kroger.
* | Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under ↵Antoine Pitrou2012-03-111-0/+3
|\ \ | |/ | | | | Windows when the child process has already exited.
| * Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under ↵Antoine Pitrou2012-03-111-0/+3
| | | | | | | | Windows when the child process has already exited.
| * this stuff will actually be new in 3.2.4Benjamin Peterson2012-03-071-30/+45
| |
* | Close #14210: add command argument completion to pdb: complete file names, ↵Georg Brandl2012-03-101-0/+3
| | | | | | | | global/local variables, aliases
* | Close #14223: curses.addch() is no more limited to the range 0-255 when theVictor Stinner2012-03-081-0/+4
| | | | | | | | | | Python curses is not linked to libncursesw. It was a regression introduced in Python 3.3a1.
* | merge 3.2 (#3787e896dbe9)Benjamin Peterson2012-03-071-0/+3
|\ \ | |/
| * allow cycles throught the __dict__ slot to be cleared (closes #1469629)Benjamin Peterson2012-03-071-0/+3
| | | | | | | | Patch from Armin, test from me.
* | make delegating generators say they running (closes #14220)Benjamin Peterson2012-03-071-0/+3
| |
* | merge 3.2 (#14212)Benjamin Peterson2012-03-071-0/+6
|\ \ | |/
| * merge headsBenjamin Peterson2012-03-071-2/+0
| |\
| | * Backout buggy patch committed for #13719Éric Araujo2012-03-071-2/+0
| | |
| * | keep the buffer object around while we're using it (closes #14212)Benjamin Peterson2012-03-071-0/+3
| |/
* | Remove buggy change for #13719 in packagingÉric Araujo2012-03-071-3/+0
| |
* | Close #14205: dict lookup raises a RuntimeError if the dict is modified duringVictor Stinner2012-03-061-1/+4
| | | | | | | | | | | | | | a lookup. "if you want to make a sandbox on top of CPython, you have to fix segfaults" so let's fix segfaults!
* | Move entry to right section. Mention minidom.Martin v. Löwis2012-03-051-2/+3
| |
* | Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows.Antoine Pitrou2012-03-051-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Make packaging’ upload command work with bdist_msi products (#13719)Éric Araujo2012-03-051-1/+2
| |
* | Merge 3.2Éric Araujo2012-03-051-0/+2
|\ \ | |/
| * Make distutils’ upload command work with bdist_msi products (#13719).Éric Araujo2012-03-051-0/+2
| | | | | | | | Patch by Ralf Schmitt.
* | Issue #14007: accept incomplete TreeBuilder objects (missing ↵Florent Xicluna2012-03-051-0/+4
| | | | | | | | start/end/data/close) for the Python implementation as well. Add disabled tests for the doctype() method.
* | 3.3.0a1 is done.Georg Brandl2012-03-051-0/+12
| |
* | Issue #14168: Check for presence of _attrs before accessing it.Martin v. Löwis2012-03-051-0/+2
| |
* | Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive.Meador Inge2012-03-041-0/+4
|\ \ | |/
| * Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive.Meador Inge2012-03-041-0/+4
| |
* | Issue #14171: Add valgrind suppressions for OpenSSL issue.Martin v. Löwis2012-03-041-0/+32
| | | | | | | | Patch by Zooko O'Whielacronx.
* | Issue #14166: Pickler objects now have an optional `dispatch_table` ↵Antoine Pitrou2012-03-041-0/+4
| | | | | | | | | | | | attribute which allows to set custom per-pickler reduction functions. Patch by sbt.
* | Bump to 3.3.0a1.Georg Brandl2012-03-042-4/+4
| |
* | - Issue #14177: marshal.loads() now raises TypeError when given an unicodeAntoine Pitrou2012-03-032-0/+4
|\ \ | |/ | | | | string. Patch by Guilherme Gonçalves.
| * Issue #14177: marshal.loads() now raises TypeError when given an unicode string.Antoine Pitrou2012-03-032-0/+4
| | | | | | | | Patch by Guilherme Gonçalves.
* | Close #13550: Remove the debug machinery from the threading module: removeVictor Stinner2012-03-031-0/+3
| | | | | | | | verbose arguments from all threading classes and functions.
* | Issue #14172: Fix reference leak when marshalling a buffer-like object ↵Antoine Pitrou2012-03-021-0/+3
|\ \ | |/ | | | | (other than a bytes object).
| * Issue #14172: Fix reference leak when marshalling a buffer-like object ↵Antoine Pitrou2012-03-021-0/+3
| | | | | | | | (other than a bytes object).
* | Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, ↵Antoine Pitrou2012-03-011-0/+5
|\ \ | |/ | | | | | | | | | | WeakValueDictionary) to return a better approximation when some objects are dead or dying. Moreover, the implementation is now O(1) rather than O(n). Thanks to Yury Selivanov for reporting.
| * Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, ↵Antoine Pitrou2012-03-011-0/+5
| | | | | | | | | | | | | | WeakValueDictionary) to return a better approximation when some objects are dead or dying. Moreover, the implementation is now O(1) rather than O(n). Thanks to Yury Selivanov for reporting.
* | Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.Antoine Pitrou2012-02-272-0/+4
|\ \ | |/ | | | | Patch by Mikhail Novikov.
| * Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.Antoine Pitrou2012-02-272-0/+4
| | | | | | | | Patch by Mikhail Novikov.
* | Fix comparison bug with 'rc' versions in packaging.version (#11841).Éric Araujo2012-02-271-0/+3
| | | | | | | | | | | | | | I added some tests in 2105ab8553b7 and found no bug, but it turns out that the doctest is not actually run. While converting the doctest to unittest style, I stumbled upon this bug again and this time applied the code patch provided by Filip Gruszczyński.
* | Issue #13521: dict.setdefault() now does only one lookup for the given key, ↵Antoine Pitrou2012-02-271-0/+3
|\ \ | |/ | | | | | | | | making it "atomic" for many purposes. Patch by Filip Gruszczyński.
| * Issue #13521: dict.setdefault() now does only one lookup for the given key, ↵Antoine Pitrou2012-02-271-0/+3
| | | | | | | | | | | | making it "atomic" for many purposes. Patch by Filip Gruszczyński.
* | Close issue #6210: Implement PEP 409Nick Coghlan2012-02-262-0/+5
| |
* | #14081: The sep and maxsplit parameter to str.split, bytes.split, and ↵Ezio Melotti2012-02-261-0/+3
| | | | | | | | bytearray.split may now be passed as keyword arguments.
* | Port the #6884 fix to packagingÉric Araujo2012-02-261-1/+1
| |