summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* #18615: Make sndhdr return namedtuples.R David Murray2014-10-091-4/+11
| | | | Patch by Claudiu Popa.
* Issue #22576: Fix signatures of FTP.storbinary() and FTP.storlines() methods.Berker Peksag2014-10-081-4/+4
|\ | | | | | | The correct parameter name is "fp", not "file".
| * Issue #22576: Fix signatures of FTP.storbinary() and FTP.storlines() methods.Berker Peksag2014-10-081-4/+4
| | | | | | | | The correct parameter name is "fp", not "file".
* | Mostly-null-merge from 3.4 branch following 3.4.2 release.Larry Hastings2014-10-081-2/+2
|\ \ | |/
| * Merge from 3.4.2 release head back into 3.4 mainline.Larry Hastings2014-10-081-2/+2
| |\
| | * Update pydoc topics and fix supsicious markup for 3.4.2 final.Larry Hastings2014-10-061-2/+2
| | |
* | | merge with 3.4Georg Brandl2014-10-061-3/+3
|\ \ \ | |/ /
| * | Closes #12148: clarify "or's together option flags" in doctest docs.Georg Brandl2014-10-061-3/+3
| | |
* | | merge with 3.4Georg Brandl2014-10-061-41/+41
|\ \ \ | |/ /
| * | Document builtin classes as such, not functions.Georg Brandl2014-10-061-41/+41
| | |
* | | Merge with 3.4Terry Jan Reedy2014-10-061-4/+6
|\ \ \ | |/ /
| * | Issue #22546: update doc for mini-language float None presentation type.Terry Jan Reedy2014-10-061-4/+6
| | |
* | | Issue #21965: Add support for in-memory SSL to the ssl module.Antoine Pitrou2014-10-051-0/+168
| | | | | | | | | | | | Patch by Geert Jansen.
* | | Merge: #14201: Update ctypes docs to match behavior changed from 214b28d7a999.R David Murray2014-10-041-5/+10
|\ \ \ | |/ /
| * | #14201: Update ctypes docs to match behavior changed from 214b28d7a999.R David Murray2014-10-041-5/+10
| | | | | | | | | | | | Original patch by Erik Johansson, slightly updated by Meador Inge.
* | | Issue #11271: concurrent.futures.Executor.map() now takes a *chunksize*Antoine Pitrou2014-10-041-2/+11
| | | | | | | | | | | | | | | argument to allow batching of tasks in child processes and improve performance of ProcessPoolExecutor. Patch by Dan O'Reilly.
* | | Merge: #14056: Small improvements to the tarfile documentation.R David Murray2014-10-041-10/+13
|\ \ \ | |/ /
| * | #14056: Small improvements to the tarfile documentation.R David Murray2014-10-041-10/+13
| | | | | | | | | | | | Patch by Éric Araujo with help from Lars Gustäbel.
* | | Merge with 3.4Zachary Ware2014-10-031-3/+3
|\ \ \ | |/ /
| * | Fix a few typo/grammar issues in the multiprocessing docs.Zachary Ware2014-10-031-3/+3
| | | | | | | | | | | | Reported by Scott Hinton on docs@.
| * | Closes #18729: minor markup improvement.Georg Brandl2014-10-021-1/+1
| | |
* | | merge with 3.4Georg Brandl2014-10-022-0/+8
|\ \ \ | |/ /
| * | closes #22528: add source links to symtable and compileallGeorg Brandl2014-10-022-0/+8
| | |
* | | Merge with 3.4Terry Jan Reedy2014-10-021-13/+18
|\ \ \ | |/ /
| * | Issue #21971: Index and update turtledemo doc.Terry Jan Reedy2014-10-021-13/+18
| | |
* | | Merge with 3.4Terry Jan Reedy2014-10-011-5/+8
|\ \ \ | |/ /
| * | Issue 22492: Be explicit that print does not support binary mode files.Terry Jan Reedy2014-10-011-5/+8
| | | | | | | | | | | | Original patch by Georg Brandl.
* | | Closes #20218: Added convenience methods read_text/write_text and read_bytes/Georg Brandl2014-10-011-0/+61
| | | | | | | | | | | | | | | | | | write_bytes to pathlib.Path objects. Thanks to Christopher Welborn and Ram Rachum for original patches.
* | | merge 3.4 (#22528)Benjamin Peterson2014-09-301-0/+3
|\ \ \ | |/ /
| * | add link to pdb source (closes #22528)Benjamin Peterson2014-09-301-0/+3
| | |
* | | #17442: Add chained traceback support to InteractiveInterpreter.R David Murray2014-09-291-0/+3
| | | | | | | | | | | | Patch by Claudiu Popa.
* | | Revert #22251Berker Peksag2014-09-2715-28/+4
|\ \ \ | |/ /
| * | Revert #22251Berker Peksag2014-09-2715-28/+4
| | |
* | | Issue #22251: Fix ReST markup to avoid errors building docs.Berker Peksag2014-09-2715-4/+28
|\ \ \ | |/ /
| * | Issue #22251: Fix ReST markup to avoid errors building docs.Berker Peksag2014-09-2715-4/+28
| | |
* | | Merge: #18854: make it explicit that is_multipart does not mean 'multipart/xxx'.R David Murray2014-09-271-17/+54
|\ \ \ | |/ /
| * | #18854: make it explicit that is_multipart does not mean 'multipart/xxx'.R David Murray2014-09-271-17/+54
| | | | | | | | | | | | Original patch (and the idea of using _structure) by Abhilash Raj.
* | | Merge: #20974: Update version table in email intro.R David Murray2014-09-271-3/+7
|\ \ \ | |/ /
| * | #20974: Update version table in email intro.R David Murray2014-09-271-3/+7
| | | | | | | | | | | | | | | Note that the email version string in 3.3 and 3.4 is inaccurate, since it still exists but wasn't updated while the code was.
* | | Issue #16324: _charset parameter of MIMEText now also accepts ↵Berker Peksag2014-09-261-1/+5
| | | | | | | | | | | | | | | | | | email.charset.Charset instances. Initial patch by Claude Paroz.
* | | Issue #17462: Add a paragraph about advantages of argparse over optparse.Berker Peksag2014-09-261-0/+10
|\ \ \ | |/ / | | | | | | Patch by Anastasia Filatova.
| * | Issue #17462: Add a paragraph about advantages of argparse over optparse.Berker Peksag2014-09-261-0/+10
| | | | | | | | | | | | Patch by Anastasia Filatova.
* | | Merge: Improve English phrasing in asyncio task docs.R David Murray2014-09-241-9/+9
|\ \ \ | |/ /
| * | Improve English phrasing in asyncio task docs.R David Murray2014-09-241-9/+9
| | |
* | | merge 3.4 (#22459)Benjamin Peterson2014-09-231-2/+2
|\ \ \ | |/ /
| * | fix error in split() examples (closes #22459)Benjamin Peterson2014-09-231-2/+2
| | | | | | | | | | | | Patch by Raúl Cumplido.
* | | MERGE: Typo: headeronly -> headersonlyJesus Cea2014-09-211-1/+1
|\ \ \ | |/ /
| * | Typo: headeronly -> headersonlyJesus Cea2014-09-211-1/+1
| | |
* | | Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line ↵Antoine Pitrou2014-09-211-6/+12
|\ \ \ | |/ / | | | | | | buffering, rather than block buffering.
| * | Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line ↵Antoine Pitrou2014-09-211-6/+12
| |/ | | | | | | buffering, rather than block buffering.