summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13540: Merge changes from 3.3Jason R. Coombs2014-08-031-19/+53
|\
| * Issue #13540: Merge changes from 3.2Jason R. Coombs2014-08-031-19/+53
| |\
| | * Issue #13540: Update references to Action class to match syntax used for ↵Jason R. Coombs2014-08-031-2/+2
| | | | | | | | | | | | other classes in this file.
| | * Issue #13540: Removed redundant documentation about Action instance ↵Jason R. Coombs2014-07-201-49/+26
| | | | | | | | | | | | attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524.
| | * Issue #13540: Expanded argparse documents to clarify the action APIJason R. Coombs2011-12-141-19/+76
| | |
| | * fix versionchanged versionBenjamin Peterson2014-04-041-2/+2
| | |
* | | Fix whitespace in example.Raymond Hettinger2014-08-031-2/+2
| | |
* | | Issue #22063: Mention in asyncio documentation that socket operations requireVictor Stinner2014-07-291-0/+8
| | | | | | | | | | | | the socket to be non-blocking
* | | Document lock parameter for asyncio.Condition()Andrew Svetlov2014-07-261-2/+4
| | |
* | | Issue #22072: Fix a couple of SSL doc typos. Patch by Alex Gaynor.Zachary Ware2014-07-251-2/+2
| | |
* | | Issue #16133: The asynchat.async_chat.handle_read() method now ignoresVictor Stinner2014-07-241-0/+4
| | | | | | | | | | | | | | | | | | BlockingIOError exceptions. Initial patch written by Xavier de Gaye. Document also in asyncore documentation that recv() may raise BlockingIOError.
* | | Backport os.rst documentation from Python 3.5.Victor Stinner2014-07-241-3/+28
| | |
* | | Issue #21813: Enhance documentation of the os.stat_result class.Victor Stinner2014-07-241-73/+182
| | |
* | | Fix incomplete sentence in asyncio docs.Andrew Svetlov2014-07-241-2/+3
| | |
* | | Asyncio doc fixes: spelling, grammar, duplication.Terry Jan Reedy2014-07-242-5/+3
| | |
* | | Englich grammar nit.Terry Jan Reedy2014-07-241-1/+1
| | |
* | | Fix doc example bug reported on python-list by Akshay Verma.Terry Jan Reedy2014-07-241-1/+1
| | |
* | | Issue #22002: Make full use of test discovery in test sub-packages.Zachary Ware2014-07-231-1/+16
| | | | | | | | | | | | | | | | | | Adds `load_package_tests` function to test.support, uses it in test_asyncio, test_email, test_json, test_tools, test_importlib and all test_importlib sub-packages to implement test discovery.
* | | Fix grammarAndrew Svetlov2014-07-231-1/+1
| | |
* | | Issue #15759: "make suspicious", "make linkcheck" and "make doctest" in Doc/Serhiy Storchaka2014-07-221-10/+16
| | | | | | | | | | | | now display special message when and only when there are failures.
* | | args doesn't need to be a tuple (closes #17210)Benjamin Peterson2014-07-191-1/+1
| | |
* | | Issue #22006: Remove outdated _thread caveat. Thanks Dan O'Reilly for the ↵Mark Dickinson2014-07-191-4/+0
| | | | | | | | | | | | report.
* | | Issue #22004: Correct an argument name.Zachary Ware2014-07-181-1/+1
| | |
* | | asyncio, tulip issue 190: Process.communicate() now ignoresVictor Stinner2014-07-171-4/+5
| | | | | | | | | | | | ConnectionResetError too
* | | asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeErrorVictor Stinner2014-07-171-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | If you want to handle the BrokenPipeError, you can easily reimplement communicate(). Add also a unit test to ensure that stdin.write() + stdin.drain() raises BrokenPipeError.
* | | Issue #21994: Fix SyntaxError in the SSLContext.check_hostname documentation.Berker Peksag2014-07-171-2/+2
| | |
* | | Fix a minor typo in the turtle docs. Found by Brandon Passmore on docs@.Zachary Ware2014-07-161-1/+1
| | |
* | | Issue 21977: Minor improvements to the regexes in the tokenizer example.Raymond Hettinger2014-07-141-2/+2
| | |
* | | asyncio: Server.close() leaves client sockets openVictor Stinner2014-07-121-2/+5
| | |
* | | asyncio: improve the documentation of serversVictor Stinner2014-07-112-18/+30
| | | | | | | | | | | | | | | | | | - Fix the documentation of Server.close(): it closes sockets - Replace AbstractServer with Server - Document Server.sockets attribute
* | | asyncio: enhance documentation of platform supportVictor Stinner2014-07-112-9/+26
| | |
* | | Issues #21948 and #16040: Fix typos.Berker Peksag2014-07-091-1/+1
| | |
* | | Issue #21680: Document asyncio event loopsVictor Stinner2014-07-084-88/+195
| | |
* | | Update asyncio documentationVictor Stinner2014-07-084-49/+131
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Document the new create_task() method - "Hide" the Task class: point to the create_task() method for interoperability - Rewrite the documentation of the Task class - Document the "Pending task destroyed" - Update output in debug mode of examples in the dev section - Replace Task() with create_task() in examples
* | | #20135: move FAQ about mutable default arguments to the programming FAQs page.Ezio Melotti2014-07-062-56/+56
| | |
* | | Closes #21921: Fix ResourceWarning in the asyncio examples: close the eventVictor Stinner2014-07-052-3/+12
| | | | | | | | | | | | | | | loop at exit. Patch written by Vajrasky Kok (I modified also the "hello world" example using a coroutine).
* | | Issue #21920: Add a missing colon to the __main__ doc.Berker Peksag2014-07-051-1/+1
| | | | | | | | | | | | Patch by Stefan Tatschner.
* | | Add an index entry for exec() builtin.Berker Peksag2014-07-041-0/+1
| | | | | | | | | | | | Reported by Draic Kin on docs@.
* | | Update docs about tp_richcompareAndrew Svetlov2014-07-031-1/+3
| | |
* | | Fix guidance for subclassing collections.Set()Raymond Hettinger2014-07-021-1/+1
| | |
* | | Use try-finally idiom in example for locks in multiprocessingAndrew Svetlov2014-07-021-2/+4
| | |
* | | Issue #13689: Remove a dead link from howto/urllib.Berker Peksag2014-07-011-3/+1
| | |
* | | Issue #21778: Clarify use of flags if PyBuffer_FillInfo() is used inside aStefan Krah2014-06-291-2/+2
| | | | | | | | | | | | getbufferproc().
* | | Fix indentation and class name in socket howto example.Ezio Melotti2014-06-271-3/+3
| | |
* | | Issue #21875: Remove vestigial references to Classic Mac OS in os module docs.Ned Deily2014-06-271-7/+1
| | |
* | | MERGE: Closes #20872: dbm/gdbm/ndbm close methods are not documentedJesus Cea2014-06-251-2/+16
|\ \ \ | |/ /
| * | Closes #20872: dbm/gdbm/ndbm close methods are not documentedJesus Cea2014-06-251-2/+16
| | |
* | | Correct the quopri module documentation. Mention the correct types of theSenthil Kumaran2014-06-251-16/+16
| | | | | | | | | | | | | | | | | | parameters on encodestring and decodestring. Patch by Petri Lehtinen.
* | | Fixed typo in documentation.Vinay Sajip2014-06-251-1/+1
| | |
* | | MERGE: Closes #21441: Reorder elements in documentation to match actual ↵Jesus Cea2014-06-251-10/+10
|\ \ \ | |/ / | | | | | | order in the code