summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #17741: Rename IncrementalParser and its methods.Eli Bendersky2013-08-302-93/+107
| | | | | | The new names are hopefully more descriptive and consistent. If you feel you don't agree with this change, *please* read issue 17741 first - there's a lot of discussion in there.
* Issue #18760: Improved cross-references in the xml package.Serhiy Storchaka2013-08-297-44/+67
|\
| * Issue #18760: Improved cross-references in the xml package.Serhiy Storchaka2013-08-297-44/+67
| |
* | Issue #11798: TestSuite now drops references to own tests after execution.Andrew Svetlov2013-08-281-3/+12
| |
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-276-15/+186
| | | | | | | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-2/+1
|\ \ | |/ | | | | error messages and comments.
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-2/+1
| | | | | | | | error messages and comments.
* | Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-262-16/+36
| | | | | | | | filenames anymore on Windows.
* | Clarify pyexpat documentation in StartElementHandlerEli Bendersky2013-08-261-2/+4
|\ \ | |/
| * Clarify pyexpat documentation in StartElementHandlerEli Bendersky2013-08-261-2/+4
| |
* | Merge doc fix from 3.3Eli Bendersky2013-08-251-8/+8
|\ \ | |/
| * Update XMLParser.close documentation and fix formatting.Eli Bendersky2013-08-251-7/+9
| | | | | | | | | | | | | | | | Using ``method`` markup because the method is on a callback object, not an explicitly documented method. :meth: markup creates links within the current class which is incorrect. In addition, indent the paragraph correctly.
* | Fix markup in elementtree docs.Ezio Melotti2013-08-251-2/+2
| |
* | Clarify the documentation of XMLParser.closeEli Bendersky2013-08-241-1/+3
| | | | | | | | | | | | The return value of close() is not always a toplevel element. It depends on what the underlying target returns. By default, TreeBuilder returns the toplevel document element.
* | Issue #18757: Improved cross-references in the concurrent package.Serhiy Storchaka2013-08-236-77/+91
|\ \ | |/
| * Issue #18757: Improved cross-references in the concurrent package.Serhiy Storchaka2013-08-236-77/+91
| |
* | #18796: improve documentation of the file argument of dis.show_code. ↵Ezio Melotti2013-08-231-1/+2
| | | | | | | | Initial patch by Vajrasky Kok.
* | merge emphasized discouragement of overriding __import__Brett Cannon2013-08-231-4/+5
|\ \ | |/
| * Emphasize that people should not override __import__.Brett Cannon2013-08-231-4/+5
| | | | | | | | | | | | | | | | With importlib getting used more and more, changing __import__ will not work as well as people used to hope as it will potentially bypass importers, etc. It also will not work with importlib.import_module() as it uses "importlib.__import__" (i.e. importlib's implementation of import) directly and not builtins.__import__.
* | Close #18794: Add a fileno() method and a closed attribute to select.devpollVictor Stinner2013-08-211-0/+31
| | | | | | | | | | | | objects. Add also tests on fileno() method and closed attribute of select.epoll and select.kqueue.
* | Typo fixAndrew Kuchling2013-08-191-1/+1
| |
* | Issue 18774: Update news and whatsnew for the set optimizationsRaymond Hettinger2013-08-191-0/+6
| |
* | Issue #18761: Improved cross-references in email documentation.Serhiy Storchaka2013-08-1910-157/+210
|\ \ | |/
| * Issue #18761: Improved cross-references in email documentation.Serhiy Storchaka2013-08-1910-156/+208
| |
* | Merge from 3.3Andrew Kuchling2013-08-181-70/+62
|\ \ | |/
| * #18562: various revisions to the regex howto for 3.xAndrew Kuchling2013-08-181-70/+62
| | | | | | | | | | | | | | | | | | | | | | | | * describe how \w is different when used in bytes and Unicode patterns. * describe re.ASCII flag to change that behaviour. * remove personal references ('I generally prefer...') * add some more links to the re module in the library reference * various small edits and re-wording.
* | Issue #18759: Merged updates from 3.3.Vinay Sajip2013-08-164-66/+76
|\ \ | |/
| * Issue #18759: Improved cross-references in logging documentation.Vinay Sajip2013-08-164-66/+76
| |
* | Issue #18743: Fix references to non-existant "StringIO" module.Serhiy Storchaka2013-08-166-8/+8
|\ \ | |/
| * Issue #18743: Fix references to non-existant "StringIO" module.Serhiy Storchaka2013-08-166-8/+8
| |
* | Fix the default placeholder in textwrap.shorten() to be " [...]".Antoine Pitrou2013-08-161-3/+3
| | | | | | | | For some reason I forgot to do it before committing the patch in issue #18585.
* | Issue #16190: fix random module recommendation to use ssl.RAND_bytes().Antoine Pitrou2013-08-161-3/+3
|\ \ | |/
| * Issue #16190: fix random module recommendation to use ssl.RAND_bytes().Antoine Pitrou2013-08-161-3/+3
| |
| * Remove errant fourth '.' from ellipsis in datetime documentation.David Wolever2013-08-141-2/+2
| |
* | Issue #18673: Add versionchanged to docsChristian Heimes2013-08-161-0/+4
| |
* | Issue #18673: Add O_TMPFILE to os module. O_TMPFILE requires Linux kernelChristian Heimes2013-08-161-0/+1
| | | | | | | | 3.11 or newer. It's only defined on system with 3.11 uapi headers, too.
* | Remove errant fourth '.' from ellipsis in datetime documentation.David Wolever2013-08-141-1/+1
| |
* | Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-148-946/+258
| | | | | | | | See http://hg.python.org/sandbox/sbt#spawn
* | Remove duplicate text in 3.4 what's new (my bad)Antoine Pitrou2013-08-131-6/+0
| |
* | Issue 18724: Fix typo noticed by Susan Tan.Ned Deily2013-08-131-1/+1
|\ \ | |/
| * Issue 18724: Fix typo noticed by Susan Tan.Ned Deily2013-08-131-1/+1
| |
| * Documenting that json.load may raise a ValueError.Felix Crux2013-08-121-0/+2
| | | | | | | | | | Issue #18680: JSONDecoder should document that it raises a ValueError for malformed data
* | Documenting that json.load may raise a ValueError.Felix Crux2013-08-121-0/+2
| | | | | | | | | | Issue #18680: JSONDecoder should document that it raises a ValueError for malformed data
* | Documenting that json.load may raise a ValueError.Felix Crux2013-08-121-0/+2
| | | | | | | | | | Issue #18680: JSONDecoder should document that it raises a ValueError for malformed data
* | Documenting that json.load may raise a ValueError.Felix Crux2013-08-121-0/+2
| | | | | | | | | | Issue #18680: JSONDecoder should document that it raises a ValueError for malformed data
* | Merge issue #17701: Improving strftime documentation.David Wolever2013-08-121-138/+166
|\ \ | |/
| * Issue #17701: Improving strftime documentation.David Wolever2013-08-121-138/+166
| |
* | Issue #18585: Add :func:`textwrap.shorten` to collapse and truncate a piece ↵Antoine Pitrou2013-08-121-17/+43
| | | | | | | | of text to a given length.
* | Sort whatsnew entries alphabeticallyAntoine Pitrou2013-08-121-32/+34
| |
* | Add whatsnew entries for 3.4.Antoine Pitrou2013-08-121-10/+103
| |