summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* | Issue #6784: Strings from Python 2 can now be unpickled as bytes objects.Alexandre Vassalotti2013-12-071-42/+46
| | | | | | | | | | | | | | Initial patch by Merlijn van Deen. I've added a few unrelated docstring fixes in the patch while I was at it, which makes the documentation for pickle a bit more consistent.
* | merge 3.3 (#19910)Benjamin Peterson2013-12-071-3/+3
|\ \ | |/
| * document that compile() can take bytes (closes #19910)Benjamin Peterson2013-12-071-3/+3
| |
* | Mention pickle protocol 4, and some tweaks.Antoine Pitrou2013-12-071-7/+18
| |
* | Issue #19900: improve generalities at the start of the pickle module docAntoine Pitrou2013-12-061-20/+53
|\ \ | |/
| * Issue #19900: improve generalities at the start of the pickle module docAntoine Pitrou2013-12-061-20/+53
| |
* | Merged minor documentation update from 3.3.Vinay Sajip2013-12-061-1/+2
|\ \ | |/
| * Added minor clarification in logging HOWTO.Vinay Sajip2013-12-061-1/+2
| |
* | Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵Antoine Pitrou2013-12-052-34/+67
|\ \ | |/ | | | | pickle module.
| * Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵Antoine Pitrou2013-12-052-34/+67
| | | | | | | | pickle module.
* | Merge socket doc changes from 3.3Antoine Pitrou2013-12-041-92/+124
|\ \ | |/
| * Tweak the socket module doc layoutAntoine Pitrou2013-12-041-64/+86
| |
| * Issue #19882: tweak docs for socket.close()Antoine Pitrou2013-12-041-9/+19
| |
* | asyncio doc: add some notes on the ping exampleVictor Stinner2013-12-041-18/+26
| |
* | asyncio doc: oh, asyncio module has its own Future classVictor Stinner2013-12-034-18/+110
| | | | | | | | | | Improve also wait() documentation: mention that the first parameter is a sequence
* | Fix typo in asyncio.AbstractServer documentationVictor Stinner2013-12-031-1/+1
| |
* | asyncio doc: add one more example of coroutinesVictor Stinner2013-12-031-1/+65
| |
* | ayncio: replace the disclamer with a seealso sectionVictor Stinner2013-12-031-9/+6
| |
* | asyncio doc: simplify ping example, remove the useless timeoutVictor Stinner2013-12-031-7/+3
| |
* | asyncio doc: fix definition of stop() methodVictor Stinner2013-12-031-1/+1
| |
* | asyncio doc: reorder methods; typoVictor Stinner2013-12-032-14/+14
| |
* | asyncio io: group transports and protocols in a new titleVictor Stinner2013-12-031-0/+4
| |
* | asyncio doc: write a complete TCP echo example, client and serverVictor Stinner2013-12-032-46/+72
| | | | | | | | Example based on tcp_echo.py example from Tulip source code.
* | asyncio doc: move coroutine example to the Task pageVictor Stinner2013-12-032-19/+32
| |
* | Split asyncio documentation into subfilesVictor Stinner2013-12-035-1555/+1563
| |
* | asyncio doc: change level of titlesVictor Stinner2013-12-021-115/+109
| | | | | | | | Remove also a duplicated Protocols section!
* | asyncio doc: reorder sectionsVictor Stinner2013-12-021-428/+428
| |
* | asyncio: document wait() functionVictor Stinner2013-12-021-0/+42
| |
* | asyncio docVictor Stinner2013-12-021-7/+35
| | | | | | | | | | | | * complete create_connection() prototype * link to Server * document get_extra_info() keys
* | Issue #19785: smtplib now supports SSLContext.check_hostname and server nameChristian Heimes2013-12-021-0/+9
| | | | | | | | indication for TLS/SSL connections.
* | Issue #19783: nntplib now supports SSLContext.check_hostname and server nameChristian Heimes2013-12-021-0/+8
| | | | | | | | indication for TLS/SSL connections.
* | Issue #19784: poplib now supports SSLContext.check_hostname and server nameChristian Heimes2013-12-021-0/+9
| | | | | | | | indication for TLS/SSL connections.
* | mergeChristian Heimes2013-12-022-2/+2
|\ \
| * | Fixed formatting (was parsed as description list).Serhiy Storchaka2013-12-021-1/+1
| | |
| * | Fixed regex match representation in an example.Serhiy Storchaka2013-12-021-1/+1
| | |
* | | Issue #19782: imaplib now supports SSLContext.check_hostname and server nameChristian Heimes2013-12-021-0/+8
|/ / | | | | | | indication for TLS/SSL connections.
* | asyncio: sort some methodsVictor Stinner2013-12-021-76/+84
| |
* | asyncio doc: group transport method by classesVictor Stinner2013-12-021-94/+113
| | | | | | | | Declare classes because they are mentionned in documentation of other functions
* | asyncio: more documentationVictor Stinner2013-12-021-19/+83
| |
* | asyncio: document network functions, and stream reader/writerVictor Stinner2013-12-021-1/+152
| |
* | Issue #19814: Clarify argparse's docs w.r.t prefix matchingEli Bendersky2013-12-021-3/+11
|\ \ | |/
| * Issue #19814: Clarify argparse's docs w.r.t prefix matchingEli Bendersky2013-12-021-3/+11
| |
* | asyncio: document locksVictor Stinner2013-12-021-0/+216
| |
* | asyncio: document Queue classesVictor Stinner2013-12-021-0/+108
| |
* | Document Task class and task functionsVictor Stinner2013-12-021-0/+200
| |
* | asyncio: cleanup docVictor Stinner2013-12-021-26/+40
| |
* | Issue #19833: Document more asyncio.BaseEventLoop methodsVictor Stinner2013-12-021-2/+143
| |
* | Issue #19833: add 2 examples to asyncio doc (hello world)Victor Stinner2013-12-021-0/+36
| |
* | Issue #19833: asyncio doc: add class name to methodsVictor Stinner2013-12-021-34/+34
| |
* | (Merge 3.3) Issue #19728: Fix sys.getfilesystemencoding() documentationVictor Stinner2013-12-021-3/+2
|\ \ | |/