Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Reflow paragraph. | R David Murray | 2014-11-02 | 1 | -2/+2 | |
| | ||||||
* | Fix English phrasing. | R David Murray | 2014-11-02 | 1 | -1/+1 | |
| | ||||||
* | Closes #22771: "verbose" is unused; deprecate it. | Georg Brandl | 2014-10-31 | 1 | -1/+1 | |
| | ||||||
* | #22613: minor other fixes in library docs (thanks Jacques Ducasse) | Georg Brandl | 2014-10-31 | 9 | -30/+35 | |
| | ||||||
* | #22613: document Cmd.cmdqueue (thanks Jacques Ducasse) | Georg Brandl | 2014-10-31 | 1 | -1/+8 | |
| | ||||||
* | #22613: fix heading levels in tracemalloc docs (thanks Jacques Ducasse) | Georg Brandl | 2014-10-31 | 1 | -14/+14 | |
| | ||||||
* | #22613: elaborate on arguments of shutil archival functions (thanks Jacques ↵ | Georg Brandl | 2014-10-31 | 1 | -3/+13 | |
| | | | | Ducasse) | |||||
* | #22613: explain what "buffer" is in the struct documentation (thanks Jacques ↵ | Georg Brandl | 2014-10-31 | 1 | -1/+9 | |
| | | | | Ducasse) | |||||
* | #22613: fix several factual errors in builtin docs (thanks Jacques Ducasse) | Georg Brandl | 2014-10-31 | 3 | -14/+17 | |
| | ||||||
* | unittest.mock docs: fix use of default role | Georg Brandl | 2014-10-31 | 2 | -360/+360 | |
| | ||||||
* | minor markup fix: no inline markup is allowed in a module synopsis | Georg Brandl | 2014-10-30 | 1 | -1/+1 | |
| | ||||||
* | Doc: fix default role usage (except in unittest mock docs) | Georg Brandl | 2014-10-30 | 7 | -13/+13 | |
| | ||||||
* | Fixing broken links in doc, part 4: some more breaks and redirects | Georg Brandl | 2014-10-29 | 12 | -16/+15 | |
| | ||||||
* | Fixing broken links in doc, part 3: the rest | Georg Brandl | 2014-10-29 | 15 | -51/+48 | |
| | ||||||
* | Fix external links to docs.python.org to use internal links instead. | Georg Brandl | 2014-10-29 | 1 | -8/+5 | |
| | ||||||
* | Use https:// URLs when referring to python.org hosts. | Georg Brandl | 2014-10-29 | 10 | -14/+14 | |
| | ||||||
* | Fix module name. | Georg Brandl | 2014-10-28 | 1 | -0/+2 | |
| | ||||||
* | Using "-m module" is easier to read and understand than "-mmodule". | Georg Brandl | 2014-10-28 | 1 | -2/+2 | |
| | ||||||
* | Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for ↵ | Georg Brandl | 2014-10-28 | 1 | -1/+1 | |
| | | | | getaddrinfo() proto param | |||||
* | Remove duplicate bullet point. | Georg Brandl | 2014-10-28 | 1 | -3/+0 | |
| | ||||||
* | Closes #22736: move seealso to the bottom of the section about RE syntax. | Georg Brandl | 2014-10-28 | 1 | -7/+8 | |
| | ||||||
* | Closes #22749: remove outdated advice to use clock() for accurate timing. | Georg Brandl | 2014-10-28 | 1 | -2/+1 | |
| | ||||||
* | #22196: link to Enum in the nametuple documentation. Patch by Karmen Dykstra. | Ezio Melotti | 2014-10-28 | 1 | -3/+4 | |
| | ||||||
* | #22237: document that sorted() is guaranteed to be stable. Initial patch by ↵ | Ezio Melotti | 2014-10-28 | 2 | -1/+8 | |
| | | | | Martin Panter. | |||||
* | Issue #22711: improve links in new distribution docs | Nick Coghlan | 2014-10-25 | 1 | -3/+19 | |
| | | | | | | - key term hyperlinks for distutils, setuptools & wheel - distutils landing page links directly to setuptools docs - short summary of setuptools benefits provided with link | |||||
* | asyncio doc: fix typo in an example | Victor Stinner | 2014-10-23 | 1 | -4/+6 | |
| | ||||||
* | Issue #22695: Fix syntax of open() doc | Victor Stinner | 2014-10-22 | 1 | -0/+1 | |
| | ||||||
* | Issue #22660: update various mentions in the ssl module documentation. | Antoine Pitrou | 2014-10-20 | 1 | -115/+95 | |
| | ||||||
* | Docs: 'os.pwrite()' needs bytes, not strings | Jesus Cea | 2014-10-20 | 1 | -3/+3 | |
| | ||||||
* | merge 3.3 | Benjamin Peterson | 2014-10-19 | 1 | -1/+1 | |
|\ | ||||||
| * | make plural s lowercase | Benjamin Peterson | 2014-10-19 | 1 | -1/+1 | |
| | | ||||||
* | | asyncio doc: write simpler examples to introduce asyncio | Victor Stinner | 2014-10-15 | 2 | -24/+93 | |
| | | ||||||
* | | Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants ↵ | Ethan Furman | 2014-10-15 | 1 | -0/+5 | |
| | | | | | | | | are SocketKind | |||||
* | | asyncio doc: rewrite subprocess doc | Victor Stinner | 2014-10-13 | 2 | -78/+180 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add a new example using transport and protocol * rewrite the example using streams to make it much simpler (remove error handling, use a simpler Python code) * copy (and adapt) more documentation from the subprocess module: - add a note about Process.wait() deadlock - add a note about shell injection - etc. * sort Process methods and attributes in the same order than subprocess.Popen methods and attributes, so the documentation looks closer * list differences between Process and subprocess.Popen APIs | |||||
* | | asyncio doc: protocol_factory of subprocess_exec() and subprocess_shell() must | Victor Stinner | 2014-10-13 | 1 | -0/+6 | |
| | | | | | | | | instanciate a subclass of SubprocessProtocol | |||||
* | | asyncio doc: document BaseSubprocessTransport.close() method | Victor Stinner | 2014-10-13 | 1 | -4/+15 | |
| | | | | | | | | | | Modify also the get_pipe_transport() doc to mention explicitly the supported file descriptors. | |||||
* | | merge 3.3 | Benjamin Peterson | 2014-10-13 | 1 | -0/+5 | |
|\ \ | |/ | ||||||
| * | note xmlrpclib doesn't verify certs (yet) | Benjamin Peterson | 2014-10-13 | 1 | -0/+5 | |
| | | ||||||
* | | asyncio: add missing @coroutine decorator | Victor Stinner | 2014-10-12 | 1 | -0/+2 | |
| | | ||||||
* | | asyncio doc: update debug traces | Victor Stinner | 2014-10-12 | 1 | -16/+27 | |
| | | ||||||
* | | asyncio doc: more explicit doc for async() | Victor Stinner | 2014-10-12 | 1 | -1/+2 | |
| | | | | | | | | | | The function schedules the execution of coroutines, it's not just a wrapper for something. | |||||
* | | asyncio doc: reformat create_server() doc | Victor Stinner | 2014-10-12 | 2 | -25/+29 | |
| | | | | | | | | | | Fix also the reate_unix_connection() doc: the method is not support on Windows, not need to mention that ssl is not support with ProactorEventLoop. | |||||
* | | asyncio doc: add TCP echo client/server using streams | Victor Stinner | 2014-10-12 | 2 | -8/+102 | |
| | | ||||||
* | | Closes #22586: clarify meaning of allow_fragments in urlparse. | Georg Brandl | 2014-10-12 | 1 | -1/+2 | |
| | | ||||||
* | | asyncio doc: enhance TCP client example | Victor Stinner | 2014-10-12 | 1 | -7/+12 | |
| | | ||||||
* | | asyncio doc: clarify how servers create protocol instances | Victor Stinner | 2014-10-12 | 1 | -6/+8 | |
| | | ||||||
* | | asyncio doc: add UDP client and server examples | Victor Stinner | 2014-10-12 | 2 | -0/+85 | |
| | | ||||||
* | | asyncio doc: use server.wait_closed() in TCP echo server example | Victor Stinner | 2014-10-12 | 1 | -7/+14 | |
| | | ||||||
* | | Issue #22613: Fix reprlib.Repr subclass example on Python 3. | Berker Peksag | 2014-10-12 | 1 | -4/+4 | |
| | | | | | | | | Reported by Jacques Ducasse. | |||||
* | | Issue #21061: correctly note redirect_stdout is reentrant | Nick Coghlan | 2014-10-12 | 1 | -1/+1 | |
| | |