summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #21488: Fix doc of codecs.decode() and codecs.encode(), no keyword ↵Victor Stinner2014-05-141-6/+8
| | | | | | support. Patch written by Brad Aylsworth.
* #21347: use string not list in shell=True example.R David Murray2014-05-141-1/+1
| | | | Patch by Akira.
* backport hmac.compare_digest to partially implement PEP 466 (closes #21306)Benjamin Peterson2014-05-111-0/+33
| | | | Backport from Alex Gaynor.
* remove confusing delete indexing (closes #21466)Benjamin Peterson2014-05-111-2/+0
|
* Add prompts to interactive example.Zachary Ware2014-05-061-8/+8
| | | | | This makes it match the new example below, and allows Sphinx's "hide the prompts and output" feature to work.
* Issue #21366: Document the fact that ``return`` in a ``finally`` clauseZachary Ware2014-05-061-0/+14
| | | | overrides a ``return`` in the ``try`` suite.
* Issue #19630 Emphasise that the file parameter to marshal.dump must be a ↵Tim Golden2014-04-291-2/+3
| | | | real file object
* Closes #21055: Index (augmented) assignment symbols.Terry Jan Reedy2014-04-291-0/+13
|
* Closes 21048: Index 'as' in import and with statements.Terry Jan Reedy2014-04-292-1/+4
|
* Closes #21026: Augment site doc based on experiments. Patch by Carol Willing.Terry Jan Reedy2014-04-291-1/+5
|
* #18243: Remove obsolete cautionary note from email mktime_tz docs.R David Murray2014-04-261-7/+3
|
* Issue #17145: Document array.array buffer interface limitations.Stefan Krah2014-04-261-2/+4
|
* fix off-by-one error (closes #21330)Benjamin Peterson2014-04-231-1/+1
|
* #18628: clarify index entry for source file encoding declaration.R David Murray2014-04-171-3/+1
|
* #18566: WhitespaceTerry Jan Reedy2014-04-161-5/+5
|
* Issue #18566: Clarify unittest setUp, tearDown doc. Patch by Nitika Agarwal.Terry Jan Reedy2014-04-161-7/+7
|
* Issue #21245: updated documentation on exception() method and function.Vinay Sajip2014-04-151-2/+2
|
* whitespace chaps my hideGregory P. Smith2014-04-151-1/+1
|
* Some cleanup of the subprocess docs in 2.7. Adds a reference to theGregory P. Smith2014-04-151-29/+30
| | | | subprocess32 project in PyPI for posix users.
* when an exception is raised in fdopen, never close the fd (changing on my ↵Benjamin Peterson2014-04-141-1/+1
| | | | mind on #21191)
* Closes #20956: 2.7 tokenize does not produce named tuples. Patch by Sam Kimbrel.Terry Jan Reedy2014-04-141-3/+4
|
* Issue #20624: Merge exception docs tweak from 3.4 branch.Mark Dickinson2014-04-141-4/+4
|
* Remove references to the obsolete Mac Carbon modules in the GUINed Deily2014-04-121-9/+5
| | | | section of the FAQ.
* Issue #21170: Removed invalid parameter names from unittest doc.Terry Jan Reedy2014-04-111-2/+2
| | | | Patch by Kushal Das.
* make sure fdopen always closes the fd in error cases (closes #21191)Benjamin Peterson2014-04-091-2/+3
|
* issue #21190: Fix the docs README linkSenthil Kumaran2014-04-091-1/+1
|
* Issue #21179: Fix description of 'round' function for numbers.Real.Mark Dickinson2014-04-091-2/+2
|
* PySequence_Fast generally returns a list not a tuple (closes #16395)Benjamin Peterson2014-04-081-4/+4
|
* the name of the slot of nb_multiply not nb_mulBenjamin Peterson2014-04-081-1/+2
|
* fix verb (closes #21174)Benjamin Peterson2014-04-071-3/+3
|
* minor docfix (reported at docs@python.org) trace.py argument is --count not ↵Senthil Kumaran2014-04-061-2/+2
| | | | --counts
* note that the hash of an arbitrary object is only derived from its address ↵Benjamin Peterson2014-04-041-1/+1
| | | | | | (closes #21154) Patch from Armin Rigo.
* Issue 21125: minor wording tweak.Raymond Hettinger2014-04-021-1/+1
|
* Issue #15067: Remove reference to a rejected PEP.Zachary Ware2014-04-011-3/+0
| | | | | | Further explanation of the concept stands alone without this reference, no need to potentially confuse people by bringing up a feature that doesn't exist.
* support CDN purgingBenjamin Peterson2014-03-301-3/+48
|
* Minor readability improvement.Raymond Hettinger2014-03-291-1/+1
|
* Update suspicious ignore file.Georg Brandl2014-03-281-3/+2
|
* Issue #6676: Ensure a meaningful exception is raised when attemptingNed Deily2014-03-271-1/+7
| | | | | | to parse more than one XML document per pyexpat xmlparser instance. (Original patches by Hirokazu Yamamoto and Amaury Forgeot d'Arc, with suggested wording by David Gutteridge)
* Updated external link in documentation.Vinay Sajip2014-03-251-1/+1
|
* Closes #21045: make the Qt help build not look completely stupidGeorg Brandl2014-03-251-0/+8
|
* Closes #18456: Doc fix: PyDict_Update only works with dict-like objects, not ↵Georg Brandl2014-03-251-2/+5
| | | | key-value sequences. Patch by priyapappachan.
* Issue #21043 - Remove CACert.org from the recommendationsDonald Stufft2014-03-241-2/+1
|
* Use "x" instead of "i" for s.index and s.count entries in sequence ops table.Zachary Ware2014-03-201-4/+4
| | | | Suggested by Bruce Esrig on docs@.
* Issue #20966: Fix Tkinter Resources linkZachary Ware2014-03-181-1/+1
|
* Update doc version switcher for 3.4/3.5.Georg Brandl2014-03-171-1/+2
|
* Close #16665: improve documentation for hex(). Patch by Jessica McKellar.Antoine Pitrou2014-03-161-2/+15
|
* send people to the right editors page (#20938)Benjamin Peterson2014-03-151-1/+2
|
* Clarify distutils’ clean command (ref #6142)Éric Araujo2014-03-132-1/+7
|
* remove unnecessary word (closes #19060)Benjamin Peterson2014-03-131-1/+1
| | | | Patch by Anastasia Filatova.
* Make distutils error messages more helpful (#11599).Éric Araujo2014-03-132-4/+9
| | | | | | | | | | When running external programs such as a C compiler and getting an error code, distutils only prints the program name. With this change, one can get the full command line by setting the DISTUTILS_DEBUG environment variable. This should have no compatibility issues, unless there are tools that depend on the exact format of distutils debug messages.