summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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.
* Issue #14824: Update Repr.repr_TYPE documentation to use correct name ↵Berker Peksag2014-09-181-3/+3
| | | | | | mangling implementation. Patch by Chris Rebert.
* Issue21738: clarify usage of __new__ in Enum subclassesEthan Furman2014-09-171-6/+9
|
* make hg link secureBenjamin Peterson2014-09-131-1/+1
|
* Issue #22386: fixed regression.Vinay Sajip2014-09-111-2/+2
|
* y2k compliance, lol (closes #22380)Benjamin Peterson2014-09-101-37/+0
|
* Issue #22369: Change "context manager protocol" to "context management ↵Serhiy Storchaka2014-09-1011-24/+24
| | | | protocol".
* Issue #22295: Adopt 'python -m pip' as the preferred invocationNick Coghlan2014-09-063-12/+39
|
* Issue #22346: also include asyncio PEP 411 notice in 3.4Nick Coghlan2014-09-061-0/+7
|
* Issue #20643: Removed unneeded (and wrong) class directives.Serhiy Storchaka2014-09-051-4/+1
|
* Issue #22320: Fix broken link in the General Python FAQ.Ned Deily2014-09-011-1/+2
| | | | Original patch by Josh Lynn.
* Closes #22275: asyncio: enhance documentation of OS supportVictor Stinner2014-08-312-8/+26
|
* getuid() returns real process id not effective (closes #22307)Benjamin Peterson2014-08-311-4/+4
|
* Issue #22063: Fix asyncio documentation of socket and pipe operations regardingVictor Stinner2014-08-251-5/+14
| | | | | to non-blocking mode. The non-blocking mode does not matter when using a ProactorEventLoop, only for SelectorEventLoop.
* asyncio, tulip issue 203: Add _FlowControlMixin.get_write_buffer_limits() methodVictor Stinner2014-08-251-0/+12
|
* asyncio: update the docVictor Stinner2014-08-252-8/+15
| | | | | | * dev: mention that the logging must be configured at DEBUG level * streams: drain() has no more a strange return value, it's just a standard coroutine
* Issue #13540: add missing markup.Terry Jan Reedy2014-08-241-2/+2
|
* Issue #22243: fix except grammar in reference.Terry Jan Reedy2014-08-231-1/+1
|
* Issue #22232 (partial fix): update Universal newlines Glossary entry.Terry Jan Reedy2014-08-231-1/+1
|
* Forward port PEP 466 What's New in 2.7 updatesNick Coghlan2014-08-231-6/+16
|
* Issue #22150: Fix deprecated-removed directive in Sphinx 1.2.Berker Peksag2014-08-222-1/+5
|