Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Close #14210: add command argument completion to pdb: complete file names, ↵ | Georg Brandl | 2012-03-10 | 2 | -0/+13 |
| | | | | global/local variables, aliases | ||||
* | Close #14248: fix typo. | Georg Brandl | 2012-03-10 | 1 | -1/+1 |
| | |||||
* | merge 3.2 (#9574) | Mark Dickinson | 2012-03-10 | 1 | -0/+7 |
|\ | |||||
| * | Closes #9574: Note that complex constructor doesn't allow whitespace around ↵ | Mark Dickinson | 2012-03-10 | 1 | -0/+7 |
| | | | | | | | | central operator. | ||||
* | | Merge with 3.2. | Georg Brandl | 2012-03-10 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | Closes #14186: add link to PEP 3107 (function annotations) to the function ↵ | Georg Brandl | 2012-03-10 | 1 | -0/+5 |
| | | | | | | | | definition section. | ||||
| * | Fix closes Issue: 14217 - 3.2 branch | Senthil Kumaran | 2012-03-09 | 1 | -1/+4 |
| | | |||||
* | | Issue #14205: Document the dict lookup change in What's New in Python 3.3 | Victor Stinner | 2012-03-09 | 1 | -0/+7 |
| | | |||||
* | | Fix indentation. | Georg Brandl | 2012-03-09 | 1 | -1/+2 |
| | | |||||
* | | Fix closes Issue: 14217 - Appropriate sphinx directive for output. Patch by ↵ | Senthil Kumaran | 2012-03-09 | 1 | -1/+3 |
| | | | | | | | | Tshepang Lekhonkhobe | ||||
* | | Fix indentation. | Georg Brandl | 2012-03-08 | 1 | -59/+60 |
| | | |||||
* | | Issue #14205: document the change of dict[key] behaviour if dict is modified | Victor Stinner | 2012-03-08 | 1 | -0/+4 |
| | | | | | | | | during the lookup | ||||
* | | Merge: Use PEP-8 style in logging example | Jason R. Coombs | 2012-03-07 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Use PEP-8 style in logging example | Jason R. Coombs | 2012-03-07 | 1 | -1/+1 |
| | | |||||
* | | Add todo item about hash randomization. | Georg Brandl | 2012-03-07 | 1 | -0/+2 |
| | | |||||
* | | merge | Brett Cannon | 2012-03-06 | 19 | -244/+498 |
|\ \ | |||||
| * | | Issue #14181: Improve clarity in the documentation for the multi-purpose | Stefan Krah | 2012-03-06 | 2 | -23/+45 |
| | | | | | | | | | | | | Py_buffer.obj field. | ||||
| * | | Add some simple examples to the PEP 380 section of What's New | Nick Coghlan | 2012-03-06 | 1 | -0/+47 |
| | | | |||||
| * | | Add PEP 414 to What's New, consolidate memoryview entries | Nick Coghlan | 2012-03-06 | 1 | -5/+20 |
| | | | |||||
| * | | Issue #14200: Add benchmark results to text flow. | Martin v. Löwis | 2012-03-06 | 1 | -13/+10 |
| | | | |||||
| * | | Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows. | Antoine Pitrou | 2012-03-05 | 1 | -5/+77 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 3.2 | Éric Araujo | 2012-03-05 | 4 | -8/+7 |
| |\ \ | | |/ | |||||
| | * | Move xml.etree higher and xml.parsers.expat lower in the markup ToC. | Éric Araujo | 2012-03-05 | 1 | -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 Araujo | 2012-03-05 | 2 | -4/+4 |
| | | | | | | | | | | | | source generates a nifty link to the Mercurial web viewer. | ||||
| | * | Remove mention of defunct file. | Éric Araujo | 2012-03-05 | 1 | -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. | ||||
| | * | merge 3.2 heads | Eli Bendersky | 2012-03-02 | 1 | -8/+8 |
| | |\ | |||||
| * | | | Improve packaging.database documentation | Éric Araujo | 2012-03-05 | 1 | -12/+33 |
| | | | | |||||
| * | | | Issue #14166: Pickler objects now have an optional `dispatch_table` ↵ | Antoine Pitrou | 2012-03-04 | 2 | -3/+66 |
| | | | | | | | | | | | | | | | | | | | | | | | | attribute which allows to set custom per-pickler reduction functions. Patch by sbt. | ||||
| * | | | Update copyright years and version name.v3.3.0a1 | Georg Brandl | 2012-03-04 | 1 | -1/+1 |
| | | | | |||||
| * | | | 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 |
| | | | | |||||
| * | | | Fix encoding handling of the pydoc-topics writer. | Georg Brandl | 2012-03-04 | 1 | -2/+3 |
| | | | | |||||
| * | | | Basic documentation for PEP 414 | Armin Ronacher | 2012-03-04 | 1 | -1/+9 |
| | | | | |||||
| * | | | Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple | Victor Stinner | 2012-03-02 | 1 | -5/+4 |
| | | | | | | | | | | | | | | | | Add a private API to convert an int or float to a C timespec structure. | ||||
| * | | | 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 | ||||
* | | | | Clarify importlib.machinery.PathFinder's difference from what __import__() does. | Brett Cannon | 2012-03-02 | 1 | -1/+3 |
| | | | | |||||
* | | | | Minor doc cleanup. | Brett Cannon | 2012-03-02 | 1 | -6/+6 |
|/ / / | |||||
* | | | Merge branch '3.2' | Petri Lehtinen | 2012-03-01 | 1 | -8/+8 |
|\ \ \ | | |/ | |/| | | | | Issue #13491. | ||||
| * | | sqlite3: Port documentation changes from the 2.7 branch | Petri Lehtinen | 2012-03-01 | 1 | -8/+8 |
| |/ | | | | | | | Issue #13491. | ||||
* | | Add missing 'versionadded' for shlex.quote; closes #14165 | Eli Bendersky | 2012-03-01 | 1 | -0/+1 |
| | | |||||
* | | Issue #10181: Add warning that structure layouts in memoryobject.h and | Stefan Krah | 2012-02-29 | 1 | -0/+9 |
| | | | | | | | | object.h have changed. | ||||
* | | Add PyMemoryView_FromMemory() to whatsnew/3.3. | Stefan Krah | 2012-02-29 | 2 | -0/+6 |
| | | |||||
* | | #14155: merge with 3.2. | Ezio Melotti | 2012-02-29 | 1 | -52/+28 |
|\ \ | |/ | |||||
| * | #14155: remove duplication about search vs match in re doc. | Ezio Melotti | 2012-02-29 | 1 | -52/+28 |
| | | |||||
* | | #10713: merge with 3.2. | Ezio Melotti | 2012-02-29 | 1 | -8/+14 |
|\ \ | |/ | |||||
| * | #10713: Improve documentation for \b and \B and add a few tests. Initial ↵ | Ezio Melotti | 2012-02-29 | 1 | -8/+14 |
| | | | | | | | | patch and tests by Martin Pool. | ||||
* | | Merge: Propagate changes for issues #13053 and #13086 from 2.7 to 3.2. | Larry Hastings | 2012-02-29 | 2 | -26/+219 |
|\ \ | |/ | | | | | (Doc only.) | ||||
| * | Propagate changes for issues #13053 and #13086 from 2.7 to 3.2. (Doc only.) | Larry Hastings | 2012-02-29 | 2 | -26/+219 |
| | | |||||
* | | merge with 3.2 | Sandro Tosi | 2012-02-28 | 1 | -1/+1 |
|\ \ | |/ |