summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #25496: Merge tarfile doc from 3.5Martin Panter2016-04-131-1/+1
|\
| * Issue #25496: Document compresslevel defaults to 9, by Hamza T KhanMartin Panter2016-04-131-1/+1
| |
* | Issue #26404: Add context manager to socketserver, by Aviv PalivodaMartin Panter2016-04-135-75/+88
| |
* | merge with 3.5Georg Brandl2016-04-121-4/+4
|\ \ | |/
| * Clarify greedy-qualifier example, avoid HTML.Georg Brandl2016-04-121-4/+4
| |
* | Issue #25910: Fixed more links in the docs.Serhiy Storchaka2016-04-113-4/+4
|\ \ | |/
| * Issue #25910: Fixed more links in the docs.Serhiy Storchaka2016-04-113-4/+4
| |
* | Merge 3.5Victor Stinner2016-04-111-0/+2
|\ \ | |/
| * typing doc: add versionadded 3.5Victor Stinner2016-04-111-0/+2
| |
* | Add a versionchanged directive to document addition of the new 'namereplace' ↵Berker Peksag2016-04-111-0/+2
|\ \ | |/ | | | | | | | | error handler. Reported by Robert on docs@p.o.
| * Add a versionchanged directive to document addition of the new 'namereplace' ↵Berker Peksag2016-04-111-0/+2
| | | | | | | | | | | | error handler. Reported by Robert on docs@p.o.
| * Merge headsSerhiy Storchaka2016-04-112-2/+2
| |\
* | \ Merge headsSerhiy Storchaka2016-04-112-2/+2
|\ \ \
| * \ \ Fix typos in mock and exceptions docsBerker Peksag2016-04-112-2/+2
| |\ \ \ | | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The default value of __len__ is 0, not 1: >>> from unittest.mock import MagicMock >>> mock = MagicMock() >>> len(mock) 0 Reported by Alex on docs@p.o. Remove the remaining VMSError reference. VMS support is gone.
| | * | Fix typos in mock and exceptions docsBerker Peksag2016-04-112-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The default value of __len__ is 0, not 1: >>> from unittest.mock import MagicMock >>> mock = MagicMock() >>> len(mock) 0 Reported by Alex on docs@p.o. Remove the remaining VMSError reference. VMS support is gone.
* | | | Issue #25910: Fixed dead links in the docs.Serhiy Storchaka2016-04-115-8/+8
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | Issue #25910: Fixed dead links in the docs.Serhiy Storchaka2016-04-115-8/+8
| |/
* | Issue #14456: Merge signal doc fix from 3.5Martin Panter2016-04-111-3/+0
|\ \ | |/
| * Issue #14456: Remove contradiction about blocking signals from bad mergeMartin Panter2016-04-111-3/+0
| |
* | Issue #26685: Raise OSError if closing a socket failsMartin Panter2016-04-112-0/+8
| |
* | Issue #25609: Double back-ticks to avoid “make check” buildbot failureMartin Panter2016-04-101-1/+1
| |
* | Merge 3.5: fcntl docVictor Stinner2016-04-091-2/+2
|\ \ | |/
| * Update fcntl doc: replace IOError with OSErrorVictor Stinner2016-04-091-2/+2
| | | | | | | | Issue #26716. IOError is a deprecated alias to OSError since Python 3.3.
* | Issue #17264: Fix cross refs and a markup error in extending/building.rstBerker Peksag2016-04-091-5/+6
|\ \ | |/
| * Issue #17264: Fix cross refs and a markup error in extending/building.rstBerker Peksag2016-04-091-5/+6
| |
| * Issue #26587: Remove an incorrect statement from the docsBrett Cannon2016-04-081-2/+1
| |
* | Issue #26587: Allow .pth files to specify file paths as well asBrett Cannon2016-04-081-0/+8
| | | | | | | | | | | | | | directories. Thanks to Wolfgang Langner for the bug report and initial version of the patch.
* | Issue #25609: Introduce contextlib.AbstractContextManager andBrett Cannon2016-04-083-8/+46
| | | | | | | | typing.ContextManager.
* | Issue #6953: Merge readline doc from 3.5Martin Panter2016-04-051-59/+116
|\ \ | |/
| * Issue #6953: Rearrange and expand Readline module documentationMartin Panter2016-04-051-59/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Group functions into six new subsections * Document the underlying Readline function or variable accessed * get_history_length() returns the history file limit * clear_history() is conditionally compiled in * Clarify zero and one bases for history item indexes * parse_and_bind() uses its argument directly as an init line * Change "command line" to "line buffer" for consistency * read_init_file() also executes the file * read_history_file() replaces the previous history * write_history_file() overwrites any existing file * Differentiate history file lines from history list items, which could be multi-line * Add more information about completion, also addressing Issue #10796 * libedit (Editline) may be used on any platform; detection is OS X specific
* | Merge typo fixes from 3.5Martin Panter2016-04-051-1/+1
|\ \ | |/
| * Fix typos in documentation and commentsMartin Panter2016-04-051-1/+1
| |
* | Add collections.Reversible. Patch by Ivan Levkivskyi. Fixes issue #25987.Guido van Rossum2016-04-042-7/+11
| |
* | Issue #26679: Fix description of KEY_PPAGE and KEY_NPAGE constantsBerker Peksag2016-04-021-2/+2
|\ \ | |/ | | | | Patch by Robert Bachmann and SilentGhost.
| * Issue #26679: Fix description of KEY_PPAGE and KEY_NPAGE constantsBerker Peksag2016-04-021-2/+2
| | | | | | | | Patch by Robert Bachmann and SilentGhost.
* | Issue #26688: Fix module name in mock docsBerker Peksag2016-04-021-3/+3
|\ \ | |/ | | | | Patch by Ashley Anderson.
| * Issue #26688: Fix module name in mock docsBerker Peksag2016-04-021-3/+3
| | | | | | | | Patch by Ashley Anderson.
* | Issue #26678: Merge datetime doc fixes from 3.5Martin Panter2016-04-011-59/+63
|\ \ | |/
| * Issue #26678: Fix indexing of datetime.tzinfo and timezone classesMartin Panter2016-04-011-59/+63
| | | | | | | | Also fix links to the “tzinfo” class and attributes.
* | Merged documentation update from 3.5.Vinay Sajip2016-04-011-0/+102
|\ \ | |/
| * Added a cookbook recipe for a logging context manager.Vinay Sajip2016-04-011-0/+102
| |
* | Issue #26676: Add missing XMLPullParser to ElementTree.__all__Martin Panter2016-04-011-1/+2
| |
* | Remove redundant leading zeroes in PEP references.Serhiy Storchaka2016-03-316-15/+15
|\ \ | |/
| * Remove redundant leading zeroes in PEP references.Serhiy Storchaka2016-03-316-15/+15
| |
* | Fix typo in xml.dom.pulldom.rstBerker Peksag2016-03-301-1/+3
|\ \ | |/ | | | | Reported by Matthew Cole on docs@p.o.
| * Fix typo in xml.dom.pulldom.rstBerker Peksag2016-03-301-1/+3
| | | | | | | | Reported by Matthew Cole on docs@p.o.
* | Merge 3.5Andrew Svetlov2016-03-291-0/+2
|\ \ | |/
| * Document None as timeout for asyncio.timeout()Andrew Svetlov2016-03-291-0/+2
| |
* | Issue #25314: Merge argparse doc from 3.5Martin Panter2016-03-281-4/+6
|\ \ | |/
| * Issue #25314: store_true and store_false also create appropriate defaults.Raymond Hettinger2011-11-201-4/+6
| |