summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge #11216: document all possible set_charset execution paths.R David Murray2011-03-151-9/+16
|\
| * Merge #11216: document all possible set_charset execution paths.R David Murray2011-03-151-9/+16
| |\
| | * #11216: document all possible set_charset execution paths.R David Murray2011-03-151-9/+16
| | |
* | | mergedBarry Warsaw2011-03-152-2/+7
|\ \ \
| * \ \ Merge doc updateAntoine Pitrou2011-03-152-2/+7
| |\ \ \ | | |/ /
| | * | Followup to 4c59cd84086f: add an entry in the porting guide and a ↵Antoine Pitrou2011-03-152-2/+7
| | | | | | | | | | | | | | | | "versionchanged" attribute.
* | | | MergedBarry Warsaw2011-03-151-3/+4
|\ \ \ \ | |/ / /
| * | | Merge #11555 as_string doc fix from 3.2.R David Murray2011-03-151-3/+4
| |\ \ \ | | |/ /
| | * | Merge #11555 as_string doc fix from 3.1.R David Murray2011-03-151-3/+4
| | |\ \ | | | |/
| | | * #11555: update doc for 3.x change to as_string mangle_from default.R David Murray2011-03-151-3/+4
| | | |
* | | | - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be usedBarry Warsaw2011-03-151-0/+14
|/ / / | | | | | | | | | in a `with` statement. Contributed by Giampaolo Rodola.
* | | Merge redundant __contains__ doc fix from 3.2.R David Murray2011-03-151-6/+0
|\ \ \ | |/ /
| * | Merge redundant __contains__ doc fix from 3.1.R David Murray2011-03-151-6/+0
| |\ \ | | |/
| | * Remove redundant __contains__ entry from Message docs.R David Murray2011-03-151-6/+0
| | |
* | | Closes issue 11407. TestCase.run returns the result object used or createdMichael Foord2011-03-141-2/+5
| | |
* | | Add a SubprocessError base class for exceptions in the subprocess module.Gregory P. Smith2011-03-141-0/+5
| | |
* | | Change versionchanged for timeout to 3.3, not 3.2.Reid Kleckner2011-03-141-5/+5
| | |
* | | Add a 'timeout' argument to subprocess.Popen.Reid Kleckner2011-03-141-11/+64
| | | | | | | | | | | | | | | | | | | | | If the timeout expires before the subprocess exits, the wait method and the communicate method will raise a subprocess.TimeoutExpired exception. When used with communicate, it is possible to catch the exception, kill the process, and retry the communicate and receive any output written to stdout or stderr.
* | | Merge with 3.2Ross Lagerwall2011-03-141-1/+1
|\ \ \ | |/ /
| * | Merge from 3.1Ross Lagerwall2011-03-141-1/+1
| |\ \ | | |/
| | * Issue #10885: Fix multiprocessing docs typoRoss Lagerwall2011-03-141-1/+1
| | |
* | | Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() ↵Antoine Pitrou2011-03-132-4/+3
|\ \ \ | |/ / | | | | | | anymore
| * | Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() ↵Antoine Pitrou2011-03-132-4/+3
| | | | | | | | | | | | anymore
* | | Remove documentation to non-existent function PyObject_CopyToObject (fixes ↵Antoine Pitrou2011-03-131-14/+0
|\ \ \ | |/ / | | | | | | #11478)
| * | Remove documentation to non-existent function PyObject_CopyToObject (fixes ↵Antoine Pitrou2011-03-131-14/+0
| |\ \ | | |/ | | | | | | #11478)
| | * Remove documentation to non-existent function PyObject_CopyToObject (fixes ↵Antoine Pitrou2011-03-131-14/+0
| | | | | | | | | | | | #11478)
* | | Issue #7391: Remove outdated HOWTO with permission of its author.Raymond Hettinger2011-03-132-291/+0
| | |
* | | Merge with 3.2.Ezio Melotti2011-03-131-20/+19
|\ \ \ | |/ /
| * | Merge with 3.1.Ezio Melotti2011-03-131-20/+19
| |\ \ | | |/
| | * Fix markup in inputoutput.rst.Ezio Melotti2011-03-131-16/+17
| | |
| | * Fix typo.Ezio Melotti2011-03-121-1/+1
| | |
* | | convert ast versioning to mercurialBenjamin Peterson2011-03-131-2/+2
| | |
* | | merge 3.2Benjamin Peterson2011-03-121-1/+1
|\ \ \ | |/ /
| * | merge 3.1Benjamin Peterson2011-03-121-1/+1
| |\ \ | | |/
| | * trunc -> math.trunc (closes #11475)Benjamin Peterson2011-03-121-1/+1
| | |
| * | forward merge from 3.1Senthil Kumaran2011-03-121-5/+6
| |\ \ | | |/
| | * Fix issue11283 - Clarifying a re pattern in the re module docs for ↵Senthil Kumaran2011-03-121-5/+6
| | | | | | | | | | | | conditional regex
* | | Fix example in atexit doc: Both open and read could raise the IOError ↵Éric Araujo2011-03-121-5/+2
| | | | | | | | | | | | | | | | | | (#10461 follow-up). Thanks to SilenGhost for catching this.
* | | Fix issue11283 - Clarifying a re pattern in the re module docs for ↵orsenthil@gmail.com2011-03-121-5/+6
| | | | | | | | | | | | conditional regex
* | | #11446: merge with 3.2.Ezio Melotti2011-03-111-1/+1
|\ \ \ | |/ /
| * | #11446: merge with 3.1.Ezio Melotti2011-03-111-1/+1
| |\ \ | | |/
| | * #11446: fix incorrect PEP link.Ezio Melotti2011-03-111-1/+1
| | |
| * | mergeEli Bendersky2011-03-111-1/+1
| |\ \
| * \ \ merge from 3.1Eli Bendersky2011-03-111-20/+26
| |\ \ \ | | | |/ | | |/|
| | * | Issue #11426: use 'with' statements on open files in CSV examplesEli Bendersky2011-03-111-20/+26
| | | |
* | | | Use with statement where it improves the documentation (closes #10461)Éric Araujo2011-03-115-8/+16
| | | |
* | | | Issue #11426: use 'with' statements on open files in CSV examplesEli Bendersky2011-03-111-20/+26
| | | |
* | | | #11435: Merge with 3.2Ezio Melotti2011-03-111-1/+1
|\ \ \ \ | | |_|/ | |/| |
| * | | #11435: Update the links generated by the source directive to use hg.python.org.Ezio Melotti2011-03-111-1/+1
| |/ /
* | | Merge #10999 fix.R David Murray2011-03-102-32/+76
|\ \ \ | |/ /