summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-012-2/+2
|\
| * Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-012-2/+2
| |
* | Issue #21032: Deprecated the use of re.LOCALE flag with str patterns orSerhiy Storchaka2014-12-011-1/+5
| | | | | | | | re.ASCII. It was newer worked.
* | merge 3.4Benjamin Peterson2014-11-301-1/+1
|\ \ | |/
| * context is keyword-onlyBenjamin Peterson2014-11-301-1/+1
| |
* | merge 3.4 (#22960)Benjamin Peterson2014-11-301-3/+8
|\ \ | |/
| * add context parameter to xmlrpclib.ServerProxy (#22960)Benjamin Peterson2014-11-301-2/+7
| | | | | | | | Patch by Alex Gaynor.
* | Issue #22389: Add contextlib.redirect_stderr().Berker Peksag2014-11-282-0/+19
| |
* | (Merge 3.4) Closes #22348: Rephrase asyncio.StreamWriter.drain() documentationVictor Stinner2014-11-281-4/+10
|\ \ | |/ | | | | Patch written by Martin Richard.
| * Closes #22348: Rephrase asyncio.StreamWriter.drain() documentationVictor Stinner2014-11-281-4/+10
| | | | | | | | Patch written by Martin Richard.
* | (Merge 3.4) asyncio doc: reformat event loop policy docVictor Stinner2014-11-281-8/+18
|\ \ | |/
| * asyncio doc: reformat event loop policy docVictor Stinner2014-11-281-8/+18
| |
* | (Merge 3.4) asyncio doc: explain how to pass keywords to callbacksVictor Stinner2014-11-282-0/+38
|\ \ | |/ | | | | (functools.partial)
| * asyncio doc: explain how to pass keywords to callbacks (functools.partial)Victor Stinner2014-11-282-0/+38
| |
* | Issue #21514: The documentation of the json module now refers to new JSON RFCSerhiy Storchaka2014-11-271-39/+72
|\ \ | |/ | | | | 7159 instead of obsoleted RFC 4627.
| * Issue #21514: The documentation of the json module now refers to new JSON RFCSerhiy Storchaka2014-11-271-39/+72
| | | | | | | | 7159 instead of obsoleted RFC 4627.
* | Merge with 3.4Zachary Ware2014-11-271-0/+4
|\ \ | |/
| * pydoc: Add a note about setting PAGER to affect console output pagination.Zachary Ware2014-11-271-0/+4
| | | | | | | | Suggested by James Lowden on docs@.
* | Issue22780: reword NotImplemented docs to emphasise shouldEthan Furman2014-11-273-4/+25
|\ \ | |/
| * (3.4) Issue22780: reword NotImplemented docs to emphasise shouldEthan Furman2014-11-273-4/+26
| |
* | Merge with 3.4Zachary Ware2014-11-271-6/+4
|\ \ | |/
| * pydoc: Remove mention of '-g' command line option, document its removal.Zachary Ware2014-11-271-6/+4
| |
* | add readline.append_history_file (closes #22940)Benjamin Peterson2014-11-261-1/+28
| | | | | | | | patch by "bru"
* | Issue #19676: Tweak documentation a bit.Berker Peksag2014-11-252-3/+5
| | | | | | | | | | | | * Updated version info to 3.5 * Fixed a markup error * Added a versionadded directive to namereplace_errors documentation
* | Issue #19676: Added the "namereplace" error handler.Serhiy Storchaka2014-11-255-5/+34
| |
* | Issue #20351: Add examples for csv.DictReader and csv.DictWriter.Berker Peksag2014-11-241-0/+25
|\ \ | |/ | | | | Patch by Charles-Axel Dein.
| * Issue #20351: Add examples for csv.DictReader and csv.DictWriter.Berker Peksag2014-11-241-0/+25
| | | | | | | | Patch by Charles-Axel Dein.
* | update versionchangedBenjamin Peterson2014-11-241-1/+1
| |
* | merge 3.4 (#22788)Benjamin Peterson2014-11-241-5/+10
|\ \ | |/
| * add context parameter to HTTPHandler (closes #22788)Benjamin Peterson2014-11-241-5/+10
| |
| * correct versionchanged versionBenjamin Peterson2014-11-241-1/+1
| |
* | merge 3.4 (#22921)Benjamin Peterson2014-11-231-7/+7
|\ \ | |/
| * don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-231-7/+7
| | | | | | | | Patch by Donald Stufft.
* | merge 3.4Benjamin Peterson2014-11-231-4/+1
|\ \ | |/
| * document that cadefault does nothing nowBenjamin Peterson2014-11-231-4/+1
| |
* | PEP 479: Don't let StopIteration bubble out of calls to next() inside a ↵Raymond Hettinger2014-11-231-4/+16
| | | | | | | | generator.
* | Issue #22834: Have import suppress FileNotFoundError when the currentBrett Cannon2014-11-213-0/+20
| | | | | | | | | | | | working directory no longer exists. Thanks to Martin Panter for the bug report.
* | Issue #22453: Removed non-documented macro PyObject_REPR().Serhiy Storchaka2014-11-181-0/+4
| |
* | Close #19494: add urrlib.request.HTTPBasicPriorAuthHandlerNick Coghlan2014-11-122-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This auth handler adds the Authorization header to the first HTTP request rather than waiting for a HTTP 401 Unauthorized response from the server as the default HTTPBasicAuthHandler does. This allows working with websites like https://api.github.com which do not follow the strict interpretation of RFC, but more the dicta in the end of section 2 of RFC 2617: > A client MAY preemptively send the corresponding Authorization > header with requests for resources in that space without receipt > of another challenge from the server. Similarly, when a client > sends a request to a proxy, it may reuse a userid and password in > the Proxy-Authorization header field without receiving another > challenge from the proxy server. See section 4 for security > considerations associated with Basic authentication. Patch by Matej Cepl.
* | Issue #22845: Improved formatting of dis documentation.Serhiy Storchaka2014-11-111-23/+24
|\ \ | |/
| * Issue #22845: Improved formatting of dis documentation.Serhiy Storchaka2014-11-111-23/+24
| |
* | Issue #22839: Fix Snapshot.statistics() link.Berker Peksag2014-11-101-1/+1
|\ \ | |/
| * Issue #22839: Fix Snapshot.statistics() link.Berker Peksag2014-11-101-1/+1
| |
* | Issue #22578: Added attributes to the re.error class.Serhiy Storchaka2014-11-101-2/+25
| |
* | Issue #21650: Add an `--sort-keys` option to json.tool CLI.Berker Peksag2014-11-102-0/+19
| |
* | Issue #22824: Updated reprlib output format for sets to use set literals.Raymond Hettinger2014-11-101-1/+1
| |
* | mergeRaymond Hettinger2014-11-101-4/+5
|\ \ | |/
| * Issue 22830: Clarify docs for functools.cmp_to_key().Raymond Hettinger2014-11-101-4/+5
| |
* | Issue #22823: Use set literals instead of creating a set from a listRaymond Hettinger2014-11-092-2/+2
| |
* | Issue #22695: Fix rendering of the deprecated-removed role in HTML.Berker Peksag2014-11-081-6/+4
|\ \ | |/