summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Checking in this change LOCAL ONLY NO UPLOAD ANYWHEREv3.4.3Larry Hastings2015-02-251-1/+1
|
* Amend b8ebf381390f: find patchlevel.py in extensions.Martin v. Löwis2015-02-091-1/+1
|
* Fix a copyright notice that still said 2014.v3.4.3rc1Larry Hastings2015-02-081-1/+1
|
* Corrected typo.Vinay Sajip2015-02-071-1/+1
|
* Minor change to documentation on creating venvs.Vinay Sajip2015-02-071-4/+7
|
* Fix missing :ref: for idle in doc build.Ned Deily2015-02-061-3/+3
|
* asyncio doc: explain how to display ResourceWarning in the debug mode sectionVictor Stinner2015-02-041-15/+24
|
* asyncio, Tulip issue 221: Fix doc of QueueEmpty and QueueFullVictor Stinner2015-02-031-6/+4
|
* Issue #23099: Closing io.BytesIO with exported buffer is rejected now toSerhiy Storchaka2015-02-031-6/+7
| | | | prevent corrupting exported buffer.
* Whitespace.Stefan Krah2015-02-011-1/+1
|
* Issue #23352: Document that Py_buffer.suboffsets must be NULL if no suboffsetsStefan Krah2015-02-011-0/+3
| | | | are required.
* Added a cookbook entry on logging audible messages.Vinay Sajip2015-02-011-0/+54
|
* Fix asyncio doc typo.R David Murray2015-01-301-1/+1
|
* asyncio doc: document the new ResourceWarning warningsVictor Stinner2015-01-301-0/+11
|
* asyncio doc: add a section about task cancellationVictor Stinner2015-01-291-0/+37
|
* Issue #21962, asyncio doc: Suggest the usage of wait_for() to replaceVictor Stinner2015-01-291-0/+23
| | | | the lack of timeout parameter for locks and queues.
* asyncio doc: document Protocol state machineVictor Stinner2015-01-291-0/+8
|
* Added a logging cookbook entry on customized exception formatting.Vinay Sajip2015-01-281-0/+55
|
* Issue #23286: Fix typo in the tutorial.Berker Peksag2015-01-271-1/+1
| | | | Patch by Mayank Tripathi.
* Issue #14099: Backout changeset e5bb3044402b (except adapted tests).Serhiy Storchaka2015-01-261-2/+8
|
* Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-6/+0
| | | | a function or a loop (e.g. "return" or "break").
* #23215: reflow paragraph.R David Murray2015-01-251-6/+6
|
* #23251: Note that time.sleep affects the calling thread only.R David Murray2015-01-251-1/+2
| | | | This change parallels the language used in the unix man page.
* Issue #23305: clarified RotatingFileHandler documentation.Vinay Sajip2015-01-231-9/+10
|
* Updated pyvenv documentation to match its current behaviour.Vinay Sajip2015-01-231-2/+5
|
* Issue #22317: Document the action parameter in ↵Berker Peksag2015-01-201-3/+6
| | | | | | ArgumentParser.add_subparsers() docs. Patch by Mike Short.
* Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-188-19/+19
|
* Issue #23180: Rename IDLE "Windows" menu item to "Window".Ned Deily2015-01-181-2/+2
| | | | Patch by Al Sweigart.
* Closes #23244: fix typo. Thanks Mayank Tripathi for the patch.Georg Brandl2015-01-151-1/+1
|
* Issue22997: minor doc update; thanks to Simoen VisserEthan Furman2015-01-151-3/+7
|
* Issue22988: clarify yield and exception blocksEthan Furman2015-01-151-4/+5
|
* Issue20467: clarify __init__'s roleEthan Furman2015-01-151-7/+11
|\
| * Issue20467: clarify __init__'s roleEthan Furman2015-01-151-7/+11
| |
* | fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-135-5/+5
| | | | | | | | Patch by Karan Goel.
* | Issue #22952: improve multiprocessing doc introduction and defer notes until ↵Antoine Pitrou2015-01-111-32/+54
| | | | | | | | | | | | appropriate. Patch by Davin Potts.
* | Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse ↵Mark Dickinson2015-01-111-4/+4
| | | | | | | | hyperbolic sine' (etc.). Remove meaningless reference to radians.
* | asyncio: SelectSelector is limited to 512 sockets on WindowsVictor Stinner2015-01-091-1/+2
| |
* | asyncio doc: fix section of event loop examplesVictor Stinner2015-01-091-5/+5
| |
* | asyncio doc: list limitations to run subprocesses from different threadsVictor Stinner2015-01-092-0/+24
| |
* | Issue #20487: Clarify meaning of "side effect" in the magic mock documentation.Berker Peksag2015-01-071-3/+4
| | | | | | | | Patch by A.M. Kuchling.
* | Issue 19548: update codecs module documentationNick Coghlan2015-01-065-310/+339
| | | | | | | | | | | | | | | | - clarified the distinction between text encodings and other codecs - clarified relationship with builtin open and the io module - consolidated documentation of error handlers into one section - clarified type constraints of some behaviours - added tests for some of the new statements in the docs
* | Cosmetic fixes to the 'Develop with asyncio' pageZachary Ware2015-01-061-8/+10
| |
* | emphasize that cffi is better than extension modules for portabilityBenjamin Peterson2015-01-051-5/+10
| |
* | the current marshal version is 4 (closes #23167)Benjamin Peterson2015-01-041-1/+1
| | | | | | | | Patch by Dmitry Kazakov.
* | Add missing URL link to Modernize docs.Ned Deily2015-01-031-1/+1
| |
* | merge 3.3Benjamin Peterson2015-01-012-2/+2
|\ \ | |/
| * merge 3.2Benjamin Peterson2015-01-012-2/+2
| |\
| | * update for copyright for 2015Benjamin Peterson2015-01-012-2/+2
| | |
| | * Copyright year update, add version to licenses.v3.2.6rc1Georg Brandl2014-10-042-2/+6
| | |
| | * Issue #18747: document issue with OpenSSL's CPRNG state and forkChristian Heimes2013-10-292-0/+12
| | |