summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #9957: document that SpooledTemporaryFile.truncate does not take size argR David Murray2012-10-061-1/+2
|
* Issue #16025: Minor corrections to the zipfile documentation.Andrew Svetlov2012-10-061-9/+9
| | | | Patch by Serhiy Storchaka.
* #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()'
* Issue #14997: disable <F5> in idle shell window.Andrew Svetlov2012-10-041-0/+2
| | | | Thanks to Roger Serwy for patch.
* Closes #16112: platform.architecture does not correctly escape argument to ↵Jesus Cea2012-10-041-1/+21
| | | | /usr/bin/file. Solve a 2.7 bootstrap issue
* Backed out changeset 5abacebec9d2Jesus Cea2012-10-043-5/+12
|
* Backed out changeset c73b90b6daddJesus Cea2012-10-043-12/+5
|
* Closes #16112: platform.architecture does not correctly escape argument to ↵Jesus Cea2012-10-043-5/+12
| | | | /usr/bin/file
* Issue #12947: Better workaround for the problem with doctest directives ↵Nick Coghlan2012-10-031-11/+21
| | | | being stripped from code examples that are intended to illustrate those directives
* Issue #12947: Add a note to doctest until the example rendering is fixedNick Coghlan2012-10-031-0/+8
|
* Fix Misc/ACKS alphabetic orderJesus Cea2012-10-031-1/+1
|
* Closes #15897: zipimport.c doesn't check return value of fseek()Jesus Cea2012-10-033-7/+39
|
* #15979: improve timeit documentation.Ezio Melotti2012-10-022-108/+174
|
* Close #16036: Backport 3.x documentation improvement.Chris Jerdonek2012-10-012-14/+23
| | | | See changeset 6ccb04c4cbae for the corresponding 3.3 change.
* Fix sqlite3 class markup.R David Murray2012-10-011-213/+213
|
* #15923: fix a mistake in asdl_c.py that resulted in a TypeError after ↵Ezio Melotti2012-09-302-1/+4
| | | | 2801bf875a24 (see #15801).
* Commit current version of the doc "dailybuild" script.Georg Brandl2012-09-301-4/+4
|
* Doc sidebar: point to 3.4 as dev.Georg Brandl2012-09-301-3/+2
|
* merge headsGregory P. Smith2012-09-292-8/+8
|\
| * Close issue #16077: fix code example in documentation of reduce() built-in ↵Chris Jerdonek2012-09-291-1/+1
| | | | | | | | (from docs@).
| * #16085: Don't promote shadowing builtins in the configparser example.R David Murray2012-09-291-7/+7
| |
* | Issue #15756: subprocess.poll() now properly handles errno.ECHILD toGregory P. Smith2012-09-293-2/+22
|/ | | | | return a returncode of 0 when the child has already exited or cannot be waited on.
* Issues #16029, #16030: Fix pickling and repr of large xranges.Mark Dickinson2012-09-283-5/+110
|
* #16071: fix email.message links in the mailbox docs.R David Murray2012-09-281-8/+10
|
* Closes #15953: Incorrect some fields declaration in the PyTypeObject ↵Jesus Cea2012-09-281-3/+3
| | | | documentation
* Update docs for string.zfillAndrew Svetlov2012-09-281-2/+3
|
* Update documentation for string.replace. Thanks to docs@Andrew Svetlov2012-09-281-2/+2
|
* Pass on parameters in unittest.TextTestResult.__init__ super callMichael Foord2012-09-283-1/+16
|
* #15222: Fix a test failure on WindowsPetri Lehtinen2012-09-261-1/+1
|
* Show how to close a connectionRaymond Hettinger2012-09-251-2/+3
|
* #15222: Insert blank line after each message in mbox mailboxesPetri Lehtinen2012-09-253-8/+66
|
* #15222: test_mailbox: End message template in a newlinePetri Lehtinen2012-09-251-13/+13
|
* switch assertion to an explicit ValueErrorBenjamin Peterson2012-09-252-3/+3
|
* - Issue #15935: Clarification of argparse docs, re: add_argument() type andBarry Warsaw2012-09-252-0/+17
| | | | default arguments. Patch contributed by Chris Jerdonek.
* Issue #16037: Limit httplib's _read_status() function to work around brokenChristian Heimes2012-09-252-1/+7
| | | | | HTTP servers and reduce memory usage. It's actually a backport of a Python 3.2 fix. Thanks to Adrien Kunysz.
* 2.7 : Issue #16013: Fix CSV Reader parsing issue with ending quote ↵Senthil Kumaran2012-09-253-3/+19
| | | | characters. Patch by Serhiy Storchaka.
* Issue #16015: Fix NameError doctest example in tutorial introduction.Chris Jerdonek2012-09-251-2/+1
|
* Issue #14167: restore statement about breaks in finally clauses; remove ↵Mark Dickinson2012-09-241-10/+8
| | | | statement about exception chaining.
* #16019, #16020: fix syntax highlight.Ezio Melotti2012-09-241-2/+6
|
* #16017: capitalize URLs.Ezio Melotti2012-09-241-1/+1
|
* #16014: fix broken link.Ezio Melotti2012-09-241-3/+3
|
* Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()Christian Heimes2012-09-243-2/+61
| | | | method doesn't require an argument again.
* #15421: fix an OverflowError in Calendar.itermonthdates() after ↵Ezio Melotti2012-09-213-1/+14
| | | | datetime.MAXYEAR. Patch by Cédric Krier.
* #15980: properly escape newlines in docstrings. Patch by Serhiy Storchaka.Ezio Melotti2012-09-214-6/+6
|
* - Issue #11715: Fix multiarch detection without having Debian developmentdoko@ubuntu.com2012-09-212-0/+24
| | | | tools (dpkg-dev) installed.
* remove gdb noise about linux-vdsoBenjamin Peterson2012-09-211-0/+5
|
* Issue 15985: fix round argument names in documentation. Thanks Chris Jerdonek.Mark Dickinson2012-09-201-7/+8
|
* Fix a few quotes/backslashes.Ezio Melotti2012-09-203-7/+7
|
* Fix rst markup in timeit docs.Ezio Melotti2012-09-201-15/+15
|