summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* fix error in split() examples (closes #22459)Benjamin Peterson2014-09-231-2/+2
| | | | Patch by Raúl Cumplido.
* Closes #21431: make docs depend on Sphinx 1.2 and fix pydoc-topics builder toGeorg Brandl2014-09-222-27/+7
| | | | return Unicode strings on Python 3.
* Typo: headeronly -> headersonlyJesus Cea2014-09-211-1/+1
|
* Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line ↵Antoine Pitrou2014-09-211-6/+12
| | | | buffering, rather than block buffering.
* Doc: remove invalid uses of ":option:" which will emit warnings in Sphinx 1.3.Georg Brandl2014-09-207-58/+58
|
* #21091: make is_attachment a method.R David Murray2014-09-201-2/+6
| | | | | | Since EmailMessage is a provisional API we can fix API bugs in a maintenance release, but I used a trick suggested by Serhiy to maintain backward compatibility with 3.4.0/1.
* standardize pep 466 relnote styleBenjamin Peterson2014-09-191-11/+9
|
* remove extra letterBenjamin Peterson2014-09-191-1/+1
|
* whatsnew for pep 466 ssl backportBenjamin Peterson2014-09-191-0/+11
|
* Issue #22436: Improved documentation for getEffectiveLevel() and getLevelName().Vinay Sajip2014-09-181-2/+11
|
* Issue #16827: Make Interpreter introduction section of the tutorial moreSenthil Kumaran2014-09-183-110/+128
| | | | | | | focussed and move advanced section and customization information to a separate file called appendix. Patch credits: Jamayla Wiley, Ya-Ting Huang and James Brewer.