summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #16115: Improve testing of the executable argument to subprocess.Popen().Chris Jerdonek2012-10-082-10/+30
|
* Merge 3.2Hynek Schlawack2012-10-082-8/+14
|\
| * #13498: Clarify docs of os.makedirs()'s exist_ok argument.Hynek Schlawack2012-10-072-8/+14
| | | | | | | | Done with great native-speaker help from R. David Murray.
* | Issue #14783: Merge changes from 3.2.Chris Jerdonek2012-10-076-11/+25
|\ \ | |/
| * Issue #14783: Improve int() docstring and also str(), range(), and slice().Chris Jerdonek2012-10-076-10/+24
| | | | | | | | | | | | This commit rewrites the docstring for int() to incorporate the documentation changes made in issue #16036. It also switches the docstrings for int(), str(), range(), and slice() to use multi-line signatures.
* | Merge issue #14900: Add aliases for sorting params for pstat to follow ↵Andrew Svetlov2012-10-071-0/+4
|\ \ | |/ | | | | | | | | column names from pstat output. Patch by Arne Babenhauserheide.
| * Issue #14900: Add aliases for sorting params for pstat to follow column ↵Andrew Svetlov2012-10-071-0/+4
| | | | | | | | | | | | names from pstat output. Patch by Arne Babenhauserheide.
* | Merge issue #14900: Distuguish call count and primitive call count in pstat ↵Andrew Svetlov2012-10-072-1/+2
|\ \ | |/ | | | | | | | | output. Patch by Arne Babenhauserheide.
| * Issue #14900: Distuguish call count and primitive call count in pstat output.Andrew Svetlov2012-10-072-1/+2
| | | | | | | | Patch by Arne Babenhauserheide.
* | Issue #15888: fixing problems in ipaddress doctests. Patch by Chris JerdonekEli Bendersky2012-10-073-21/+34
| |
* | More whatsnew updates, move some doc NEWS items into the doc section.R David Murray2012-10-072-16/+26
| |
* | starmap/starmap_async for whatsnew, and fix multiprocessing Pool markup.R David Murray2012-10-072-2/+9
| |
* | More whatsnew updates. Also move a C-API NEWS item out of library section.R David Murray2012-10-072-5/+30
| |
* | #9957: document that SpooledTemporaryFile.truncate now accepts a size argR David Murray2012-10-062-0/+11
|\ \ | |/
| * #9957: document that SpooledTemporaryFile.truncate does not take size argR David Murray2012-10-061-1/+2
| |
* | Null merge.R David Murray2012-10-060-0/+0
|\ \ | |/
| * Closes #16149: remove now-false statement about the inability to compare ↵Georg Brandl2012-10-061-10/+4
| | | | | | | | Decimal and float objects.
* | More whatsnew updates.R David Murray2012-10-062-24/+63
| |
* | Fix markup in Counter note.Georg Brandl2012-10-061-10/+10
| |
* | whatsnew updates for smtplib and collections.Counter.R David Murray2012-10-062-9/+16
| |
* | Fix typos.R David Murray2012-10-061-2/+2
| |
* | #10968: commit threading doc changes and corresponding whatsnew entry.R David Murray2012-10-064-171/+162
| | | | | | | | | | | | It is unfortunate that the '_' names were not kept as aliases, and that RLock was not also converted to a class, but it is now too late to change either of those things for 3.3.
* | Issue #16096: Fix signed overflow in Objects/longobject.c. Thanks Serhiy ↵Mark Dickinson2012-10-061-3/+2
| | | | | | | | Storchaka.
* | Issue #16096: Fix several occurrences of potential signed integer overflow. ↵Mark Dickinson2012-10-067-35/+30
| | | | | | | | Thanks Serhiy Storchaka.
* | revert accidental inclusion of subprocess testsAndrew Svetlov2012-10-061-22/+0
|\ \ | |/
| * revert accidental inclusion of subprocess testsAndrew Svetlov2012-10-061-22/+0
| |
* | Issue #16025: Minor corrections to the zipfile documentation.Andrew Svetlov2012-10-062-12/+34
|\ \ | |/ | | | | Patch by Serhiy Storchaka.
| * Issue #16025: Minor corrections to the zipfile documentation.Andrew Svetlov2012-10-062-9/+31
| | | | | | | | Patch by Serhiy Storchaka.
* | Closes #11710: create "landing pages" (/library/package.html) for those ↵Georg Brandl2012-10-069-8/+79
| | | | | | | | packages that have no documented content themselves, e.g. "urllib" or "http".
* | Closes #16149: remove now-false statement about the inability to compare ↵Georg Brandl2012-10-061-10/+4
| | | | | | | | Decimal and float objects.
* | Issue #16115: Add test for check that executable arg to Popen() takes ↵Andrew Svetlov2012-10-051-0/+10
| | | | | | | | precedence over args[0] arg\n \n Patch by Kushal Das
* | Merge ftplib doc fix with 3.2.Ezio Melotti2012-10-051-9/+9
|\ \ | |/
| * The file obj passed to ftp.storbinary/storlines must be opened in binary mode.Ezio Melotti2012-10-051-9/+9
| |
* | Merge issue #16138: fix typo.Andrew Svetlov2012-10-051-1/+1
|\ \ | |/
| * Issue #16138: fix typo.Andrew Svetlov2012-10-051-1/+1
| |
* | MERGE: #16112: platform.architecture does not correctly escape argument to ↵Jesus Cea2012-10-051-4/+3
|\ \ | |/ | | | | /usr/bin/file. Fix original patch
| * #16112: platform.architecture does not correctly escape argument to ↵Jesus Cea2012-10-051-2/+2
| | | | | | | | /usr/bin/file. Fix original patch
| * #16112: platform.architecture does not correctly escape argument to ↵Jesus Cea2012-10-051-4/+3
| | | | | | | | /usr/bin/file. Use 'communicate()' and decode the bytes
* | #16127: remove outdated references to narrow builds. Patch by Serhiy Storchaka.Ezio Melotti2012-10-054-17/+6
| |
* | Fix PyUnicode_Format(): return NULL if PyUnicode_READY(uformat) failedVictor Stinner2012-10-041-1/+3
| | | | | | | | | | This error cannot occur in practice: PyUnicode_FromObject() always return a "ready" string.
* | Merge: Issue #14997: disable <F5> in idle shell window.Andrew Svetlov2012-10-041-0/+2
|\ \ | |/ | | | | Thanks to Roger Serwy for patch.
| * Issue #14997: disable <F5> in idle shell window.Andrew Svetlov2012-10-041-0/+2
| | | | | | | | Thanks to Roger Serwy for patch.
* | Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element ↵Antoine Pitrou2012-10-044-31/+127
| | | | | | | | element_factory (fixes a regression in SimpleTAL).
* | Fix typo in documentation for time module, thanks to docs@Andrew Svetlov2012-10-041-1/+1
| |
* | Fix typo in documentation for collections.ChainMap, thanks to Olivier ↵Andrew Svetlov2012-10-042-1/+2
| | | | | | | | Bernard from docs@
* | Closes #16126: PyErr_Format format mismatch in _testcapimodule.cJesus Cea2012-10-043-1/+15
| |
* | MERGE: Closes #16112: platform.architecture does not correctly escape ↵Jesus Cea2012-10-043-5/+12
|\ \ | |/ | | | | argument to /usr/bin/file
| * Closes #16112: platform.architecture does not correctly escape argument to ↵Jesus Cea2012-10-043-5/+11
| | | | | | | | /usr/bin/file
* | Whatsnew typoJesus Cea2012-10-041-2/+2
| |
* | whatsnewJesus Cea2012-10-041-0/+7
| |