Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Silently ignore unregistering closed files. Fixes issue 19876. With docs and ↵ | Guido van Rossum | 2013-12-07 | 1 | -2/+5 |
| | | | | slight test refactor. | ||||
* | Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. | Alexandre Vassalotti | 2013-12-07 | 1 | -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 Peterson | 2013-12-07 | 1 | -3/+3 |
|\ | |||||
| * | document that compile() can take bytes (closes #19910) | Benjamin Peterson | 2013-12-07 | 1 | -3/+3 |
| | | |||||
* | | Mention pickle protocol 4, and some tweaks. | Antoine Pitrou | 2013-12-07 | 1 | -7/+18 |
| | | |||||
* | | Issue #19900: improve generalities at the start of the pickle module doc | Antoine Pitrou | 2013-12-06 | 1 | -20/+53 |
|\ \ | |/ | |||||
| * | Issue #19900: improve generalities at the start of the pickle module doc | Antoine Pitrou | 2013-12-06 | 1 | -20/+53 |
| | | |||||
* | | Merged minor documentation update from 3.3. | Vinay Sajip | 2013-12-06 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Added minor clarification in logging HOWTO. | Vinay Sajip | 2013-12-06 | 1 | -1/+2 |
| | | |||||
* | | Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵ | Antoine Pitrou | 2013-12-05 | 2 | -34/+67 |
|\ \ | |/ | | | | | pickle module. | ||||
| * | Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵ | Antoine Pitrou | 2013-12-05 | 2 | -34/+67 |
| | | | | | | | | pickle module. | ||||
* | | Merge socket doc changes from 3.3 | Antoine Pitrou | 2013-12-04 | 1 | -92/+124 |
|\ \ | |/ | |||||
| * | Tweak the socket module doc layout | Antoine Pitrou | 2013-12-04 | 1 | -64/+86 |
| | | |||||
| * | Issue #19882: tweak docs for socket.close() | Antoine Pitrou | 2013-12-04 | 1 | -9/+19 |
| | | |||||
* | | asyncio doc: add some notes on the ping example | Victor Stinner | 2013-12-04 | 1 | -18/+26 |
| | | |||||
* | | asyncio doc: oh, asyncio module has its own Future class | Victor Stinner | 2013-12-03 | 4 | -18/+110 |
| | | | | | | | | | | Improve also wait() documentation: mention that the first parameter is a sequence | ||||
* | | Fix typo in asyncio.AbstractServer documentation | Victor Stinner | 2013-12-03 | 1 | -1/+1 |
| | | |||||
* | | asyncio doc: add one more example of coroutines | Victor Stinner | 2013-12-03 | 1 | -1/+65 |
| | | |||||
* | | ayncio: replace the disclamer with a seealso section | Victor Stinner | 2013-12-03 | 1 | -9/+6 |
| | | |||||
* | | asyncio doc: simplify ping example, remove the useless timeout | Victor Stinner | 2013-12-03 | 1 | -7/+3 |
| | | |||||
* | | asyncio doc: fix definition of stop() method | Victor Stinner | 2013-12-03 | 1 | -1/+1 |
| | | |||||
* | | asyncio doc: reorder methods; typo | Victor Stinner | 2013-12-03 | 2 | -14/+14 |
| | | |||||
* | | asyncio io: group transports and protocols in a new title | Victor Stinner | 2013-12-03 | 1 | -0/+4 |
| | | |||||
* | | asyncio doc: write a complete TCP echo example, client and server | Victor Stinner | 2013-12-03 | 2 | -46/+72 |
| | | | | | | | | Example based on tcp_echo.py example from Tulip source code. | ||||
* | | asyncio doc: move coroutine example to the Task page | Victor Stinner | 2013-12-03 | 2 | -19/+32 |
| | | |||||
* | | Split asyncio documentation into subfiles | Victor Stinner | 2013-12-03 | 5 | -1555/+1563 |
| | | |||||
* | | asyncio doc: change level of titles | Victor Stinner | 2013-12-02 | 1 | -115/+109 |
| | | | | | | | | Remove also a duplicated Protocols section! | ||||
* | | asyncio doc: reorder sections | Victor Stinner | 2013-12-02 | 1 | -428/+428 |
| | | |||||
* | | asyncio: document wait() function | Victor Stinner | 2013-12-02 | 1 | -0/+42 |
| | | |||||
* | | asyncio doc | Victor Stinner | 2013-12-02 | 1 | -7/+35 |
| | | | | | | | | | | | | * complete create_connection() prototype * link to Server * document get_extra_info() keys | ||||
* | | Issue #19785: smtplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 1 | -0/+9 |
| | | | | | | | | indication for TLS/SSL connections. | ||||
* | | Issue #19783: nntplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 1 | -0/+8 |
| | | | | | | | | indication for TLS/SSL connections. | ||||
* | | Issue #19784: poplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 1 | -0/+9 |
| | | | | | | | | indication for TLS/SSL connections. | ||||
* | | merge | Christian Heimes | 2013-12-02 | 2 | -2/+2 |
|\ \ | |||||
| * | | Fixed formatting (was parsed as description list). | Serhiy Storchaka | 2013-12-02 | 1 | -1/+1 |
| | | | |||||
| * | | Fixed regex match representation in an example. | Serhiy Storchaka | 2013-12-02 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #19782: imaplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 1 | -0/+8 |
|/ / | | | | | | | indication for TLS/SSL connections. | ||||
* | | asyncio: sort some methods | Victor Stinner | 2013-12-02 | 1 | -76/+84 |
| | | |||||
* | | asyncio doc: group transport method by classes | Victor Stinner | 2013-12-02 | 1 | -94/+113 |
| | | | | | | | | Declare classes because they are mentionned in documentation of other functions | ||||
* | | asyncio: more documentation | Victor Stinner | 2013-12-02 | 1 | -19/+83 |
| | | |||||
* | | asyncio: document network functions, and stream reader/writer | Victor Stinner | 2013-12-02 | 1 | -1/+152 |
| | | |||||
* | | Issue #19814: Clarify argparse's docs w.r.t prefix matching | Eli Bendersky | 2013-12-02 | 1 | -3/+11 |
|\ \ | |/ | |||||
| * | Issue #19814: Clarify argparse's docs w.r.t prefix matching | Eli Bendersky | 2013-12-02 | 1 | -3/+11 |
| | | |||||
* | | asyncio: document locks | Victor Stinner | 2013-12-02 | 1 | -0/+216 |
| | | |||||
* | | asyncio: document Queue classes | Victor Stinner | 2013-12-02 | 1 | -0/+108 |
| | | |||||
* | | Document Task class and task functions | Victor Stinner | 2013-12-02 | 1 | -0/+200 |
| | | |||||
* | | asyncio: cleanup doc | Victor Stinner | 2013-12-02 | 1 | -26/+40 |
| | | |||||
* | | Issue #19833: Document more asyncio.BaseEventLoop methods | Victor Stinner | 2013-12-02 | 1 | -2/+143 |
| | | |||||
* | | Issue #19833: add 2 examples to asyncio doc (hello world) | Victor Stinner | 2013-12-02 | 1 | -0/+36 |
| | | |||||
* | | Issue #19833: asyncio doc: add class name to methods | Victor Stinner | 2013-12-02 | 1 | -34/+34 |
| | |