summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22564: ssl doc: mention how SSLSocket are usually createdVictor Stinner2014-10-101-0/+3
|
* Issue #22564: ssl doc: use "class" marker to document the SSLSocket classVictor Stinner2014-10-101-24/+26
|
* Issue #22564: ssl doc: document read(), write(), pending, server_side andVictor Stinner2014-10-101-0/+54
| | | | server_hostname methods and attributes of SSLSocket.
* Issue #22564: ssl doc: fix typosVictor Stinner2014-10-101-2/+2
|
* #18176: Change generic UCD PropList link to version specific link.R David Murray2014-10-101-1/+3
|
* #18176: fix another reference and add it to the makeunicodedata comment.R David Murray2014-10-091-1/+1
|
* #18176: updated stdtypes UCD link, added reminder to makeunicodedata.R David Murray2014-10-091-1/+1
| | | | Patch by Alexander Belopolsky.
* Closes #22580: Fix documentation of PyUnicode_Tailmatch()Victor Stinner2014-10-091-1/+1
| | | | The result type is Py_ssize_t (and not int).
* Issue #22576: Fix signatures of FTP.storbinary() and FTP.storlines() methods.Berker Peksag2014-10-081-4/+4
| | | | The correct parameter name is "fp", not "file".
* Merge from 3.4.2 release head back into 3.4 mainline.Larry Hastings2014-10-082-7/+7
|\
| * Update pydoc topics and fix supsicious markup for 3.4.2 final.Larry Hastings2014-10-062-7/+7
| |
* | use source role instead of linking to svnBenjamin Peterson2014-10-071-9/+8
| |
* | Closes #16155: fix a few errors in doctest output of the FAQ pages.Georg Brandl2014-10-063-6/+17
| |
* | Closes #12148: clarify "or's together option flags" in doctest docs.Georg Brandl2014-10-061-3/+3
| |
* | Closes #21782: the default hash(x) is not exactly id(x) but derived from it.Georg Brandl2014-10-061-2/+2
| |
* | Closes #10031: overhaul the "imports" section of the programming FAQ.Georg Brandl2014-10-061-16/+2
| | | | | | | | | | | | Remove the advice to never use relative imports; it is a leftover from 2.x implicit relative imports. Remove the advice to locally import modules in __init__, it is a strange practice. Remove the advice to use "from ... import *" with some modules.
* | Clean up the docs of PyObject_IsSubclass and PyObject_IsInstance, and ↵Georg Brandl2014-10-062-30/+35
| | | | | | | | mention that they call the PEP 3119 methods.
* | Closes #22507: document that PyType_IsSubtype does not call __subclasscheck__.Georg Brandl2014-10-061-0/+6
| |
* | Document builtin classes as such, not functions.Georg Brandl2014-10-061-41/+41
| |
* | Closes #22565: fix argument types of PyErr_WarnEx.Georg Brandl2014-10-061-1/+1
| |
* | Issue #22546: update doc for mini-language float None presentation type.Terry Jan Reedy2014-10-061-4/+6
| |
* | PyObject not PyType (closes #18494)Benjamin Peterson2014-10-061-2/+2
| |
* | Closes #19477: remove outdated documentation of tp_print type object slot.Georg Brandl2014-10-051-24/+1
| |
* | #14201: Update ctypes docs to match behavior changed from 214b28d7a999.R David Murray2014-10-041-5/+10
| | | | | | | | Original patch by Erik Johansson, slightly updated by Meador Inge.
* | Realign packaging docs with PyPUG changesNick Coghlan2014-10-042-14/+14
| |
* | #14056: Small improvements to the tarfile documentation.R David Murray2014-10-041-10/+13
| | | | | | | | Patch by Éric Araujo with help from Lars Gustäbel.
* | Fix a few typo/grammar issues in the multiprocessing docs.Zachary Ware2014-10-031-3/+3
| | | | | | | | Reported by Scott Hinton on docs@.
* | Closes #18729: minor markup improvement.Georg Brandl2014-10-021-1/+1
| |
* | closes #22528: add source links to symtable and compileallGeorg Brandl2014-10-022-0/+8
| |
* | Remove unused and now removed config value.Georg Brandl2014-10-021-7/+1
| |
* | Issue #21971: Index and update turtledemo doc.Terry Jan Reedy2014-10-021-13/+18
| |
* | Issue 22492: Be explicit that print does not support binary mode files.Terry Jan Reedy2014-10-011-5/+8
| | | | | | | | Original patch by Georg Brandl.
* | Remove old overridden version of a Sphinx CSS file.Georg Brandl2014-10-011-446/+0
| | | | | | | | All Python-specific styling is now in the theme anyway.
* | Make pydoctheme compatible with Sphinx 1.3 HTML output changes.Georg Brandl2014-10-011-4/+4
| |
* | Fix overlooked conf.py setting in flattening of Doc directory.Ned Deily2014-10-011-1/+1
| |
* | #21739: mention subtle difference between loops and listcomps in tutorial.R David Murray2014-10-011-3/+8
| | | | | | | | | | | | | | | | | | | | We don't want to go into a full explanation of scopes at this point in the tutorial, so we just mention that the loop creates or overwrites a persistent variable while the listcomp doesn't. Not mentioning this would lead someone to incorrectly assume loops and listcomps were *completely* equivalent, which would confuse them later. Original patch by Rose Ames, tweaked to remove the word 'scope'.
* | Issue 22465: grammar, number agreement.Terry Jan Reedy2014-09-301-1/+1
| |
* | Move Doc/tools/sphinxext content to Doc/tools, there is no need for the ↵Georg Brandl2014-09-3022-88/+7
| | | | | | | | nested subdirectory anymore.
* | Dont define an empty SPHINXOPTS, which overrides a definition from the ↵Georg Brandl2014-09-301-1/+0
| | | | | | | | environment.
* | Prepare sphinx extensions for 1.3.Georg Brandl2014-09-302-1/+3
| |
* | add link to pdb source (closes #22528)Benjamin Peterson2014-09-301-0/+3
| |
* | #20135: FAQ entry for list mutation. (See also 6375bf34fff6.)R David Murray2014-09-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | I accidentally committed this in 6375bf34fff6; this changeset addresses the last review comments on the patch. This is a perennial question and something someone opens a ticket for probably every other month or so, so I'm surprised we didn't already have a FAQ entry for it. The original patch was written by M. Votz, refined first by Ezio Melotti and further refined by me.
* | #10510: Fix bug in forward port of 2.7 distutils patch.R David Murray2014-09-281-1/+76
| | | | | | | | Pointed out by Arfrever.
* | Revert #22251Berker Peksag2014-09-2718-38/+6
| |
* | Issue #22251: Fix ReST markup to avoid errors building docs.Berker Peksag2014-09-2718-6/+38
| |
* | #18854: make it explicit that is_multipart does not mean 'multipart/xxx'.R David Murray2014-09-271-17/+54
| | | | | | | | Original patch (and the idea of using _structure) by Abhilash Raj.
* | #20974: Update version table in email intro.R David Murray2014-09-271-3/+7
| | | | | | | | | | Note that the email version string in 3.3 and 3.4 is inaccurate, since it still exists but wasn't updated while the code was.
* | Issue #17462: Add a paragraph about advantages of argparse over optparse.Berker Peksag2014-09-261-0/+10
| | | | | | | | Patch by Anastasia Filatova.
* | allow archives for rc releases to be built (closes #22484)Benjamin Peterson2014-09-251-2/+3
| |
* | Improve English phrasing in asyncio task docs.R David Murray2014-09-241-9/+9
| |