summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* indicate we're not running as we leave this blockBenjamin Peterson2012-03-081-0/+1
|
* make delegating generators say they running (closes #14220)Benjamin Peterson2012-03-073-14/+112
|
* merge 3.2 (#14212)Benjamin Peterson2012-03-074-26/+61
|\
| * merge headsBenjamin Peterson2012-03-073-12/+1
| |\
| * | keep the buffer object around while we're using it (closes #14212)Benjamin Peterson2012-03-074-34/+65
| | |
* | | Remove buggy change for #13719 in packagingÉric Araujo2012-03-073-13/+1
| | |
* | | Merge 3.2Éric Araujo2012-03-072-10/+1
|\ \ \ | | |/ | |/|
| * | Backout buggy patch committed for #13719Éric Araujo2012-03-073-12/+1
| |/
* | Use ANSI C prototype instead of K&R style.Ross Lagerwall2012-03-071-1/+1
| |
* | Issue #10951: Fix compiler warnings in _sre.cRoss Lagerwall2012-03-061-5/+5
| |
* | Issue #10951: Fix warnings in the socket module.Ross Lagerwall2012-03-061-4/+4
| |
* | Merge: Use PEP-8 style in logging exampleJason R. Coombs2012-03-071-1/+1
|\ \ | |/
| * Use PEP-8 style in logging exampleJason R. Coombs2012-03-071-1/+1
| |
* | Add todo item about hash randomization.Georg Brandl2012-03-071-0/+2
| |
* | mergeBrett Cannon2012-03-0694-1463/+2417
|\ \
| * | Remove uuids, as they are now computed.Martin v. Löwis2012-03-061-38/+0
| | |
| * | Use hg manifest to compute list of library files to include.Martin v. Löwis2012-03-061-126/+39
| | |
| * | Whitespace.Stefan Krah2012-03-061-14/+14
| | |
| * | Whitespace.Stefan Krah2012-03-061-1/+1
| | |
| * | Issue #14181: Improve clarity in the documentation for the multi-purposeStefan Krah2012-03-062-23/+45
| | | | | | | | | | | | Py_buffer.obj field.
| * | MergeAntoine Pitrou2012-03-061-5/+67
| |\ \
| | * | Add some simple examples to the PEP 380 section of What's NewNick Coghlan2012-03-061-0/+47
| | | |
| | * | Add PEP 414 to What's New, consolidate memoryview entriesNick Coghlan2012-03-061-5/+20
| | | |
| * | | Remove a couple of local imports.Antoine Pitrou2012-03-061-5/+4
| | | |
| * | | Reap processes at test end to avoid false positives in reference leak detection.Antoine Pitrou2012-03-061-0/+2
| |/ /
| * | Issue #14200: Add benchmark results to text flow.Martin v. Löwis2012-03-061-13/+10
| | |
| * | Fix a comment: PySequence_Fast() creates a list, not a tuple.Larry Hastings2012-03-061-1/+1
| | |
| * | Remove an unused variableVictor Stinner2012-03-061-1/+0
| | |
| * | test_pty: fix ResourceWarning warningsVictor Stinner2012-03-061-5/+14
| | |
| * | Close #14205: dict lookup raises a RuntimeError if the dict is modified duringVictor Stinner2012-03-065-352/+31
| | | | | | | | | | | | | | | | | | | | | 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
| | |
| * | Added delay before record creation.Vinay Sajip2012-03-051-1/+1
| | |
| * | Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows.Antoine Pitrou2012-03-057-153/+582
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Krah2012-03-0513-31/+72
| |\ \
| | * \ Merge 3.2Éric Araujo2012-03-051-0/+1
| | |\ \ | | | |/
| | | * Fix NameError from #13719 fixÉric Araujo2012-03-051-0/+1
| | | |
| | * | Make packaging’ upload command work with bdist_msi products (#13719)Éric Araujo2012-03-053-4/+14
| | | |
| | * | Branch mergeÉric Araujo2012-03-051-1/+0
| | |\ \
| | | * | remove f_yieldfrom access from Python (closes #13970)Benjamin Peterson2012-03-051-1/+0
| | | | |
| | * | | Merge 3.2Éric Araujo2012-03-058-15/+24
| | |\ \ \ | | | | |/ | | | |/|
| | | * | Backport minidom attribute tests from default (73c76466cf44).Éric Araujo2012-03-051-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 Araujo2012-03-053-6/+16
| | | | | | | | | | | | | | | | | | | | Patch by Ralf Schmitt.
| | | * | Move xml.etree higher and xml.parsers.expat lower in the markup ToC.Éric Araujo2012-03-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | I assume that most users looking at this page are looking for a library to process XML, not a low-level parser. First proposed in #11379.
| | | * | Use source reST role instead of file where it makes sense.Éric Araujo2012-03-052-4/+4
| | | | | | | | | | | | | | | | | | | | source generates a nifty link to the Mercurial web viewer.
| | | * | Remove mention of defunct file.Éric Araujo2012-03-051-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Misc/COPYRIGHT was renamed twelve years ago to LICENSE and later copied to the main docs, to which there is already a link.
| | | * | Use raw string for a docstring that uses a backslashÉric Araujo2012-03-051-1/+1
| | | | |
| | * | | Improve packaging.database documentationÉric Araujo2012-03-052-12/+34
| | | |/ | | |/|
| * | | Issue #14181: Preserve backwards compatibility for getbufferprocs that a) doStefan Krah2012-03-053-15/+22
| |/ / | | | | | | | | | | | | 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 bothStefan Krah2012-03-052-1/+219
| | | | | | | | | | | | view.obj==NULL and view.obj==base.
| * | Issue #12151: Added more info to diagnostics.Vinay Sajip2012-03-051-4/+5
| | |