| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Close #18908: Keep Enum docs in their own section. Patch by Elazar Gershuni. | Ethan Furman | 2013-09-07 | 1 | -58/+67 |
| | | |||||
| * | Closes #18939: Merged documentation update from 3.3. | Vinay Sajip | 2013-09-06 | 1 | -0/+14 |
| |\ | |||||
| | * | Issue #18939: Updated venv documentation with some clarifications. | Vinay Sajip | 2013-09-06 | 1 | -0/+14 |
| | | | |||||
| * | | Closes #18933: Merged update from 3.3. | Vinay Sajip | 2013-09-05 | 3 | -0/+12 |
| |\ \ | |/ | |||||
| | * | Issue #18933: Added links to source code. | Vinay Sajip | 2013-09-05 | 3 | -0/+12 |
| | | | |||||
| * | | Issue #16853: Mention the new selectors module in the select module | Victor Stinner | 2013-09-04 | 1 | -0/+8 |
| | | | |||||
| * | | Issue #16853: Add new selectors module. | Charles-François Natali | 2013-09-04 | 2 | -0/+232 |
| | | | |||||
| * | | Issue #18882: Add threading.main_thread() function. | Andrew Svetlov | 2013-09-04 | 1 | -0/+9 |
| | | | |||||
| * | | Issue #18901: The sunau getparams method now returns a namedtuple rather than | Serhiy Storchaka | 2013-09-03 | 1 | -2/+3 |
| | | | | | | | | | a plain tuple. Patch by Claudiu Popa. | ||||
| * | | Close #18738: Route __format__ calls to mixed-in type for mixed Enums (such ↵ | Ethan Furman | 2013-09-01 | 1 | -0/+6 |
| | | | | | | | | | as IntEnum). | ||||
| * | | Fix XMLPullParser documentation to say "non-blocking" instead of "asynchronous". | Eli Bendersky | 2013-08-31 | 1 | -17/+17 |
| | | | | | | | | | | | | | The latter is more ambiguous. Related to issue #17741 | ||||
| * | | Issue #17741: Rename IncrementalParser and its methods. | Eli Bendersky | 2013-08-30 | 1 | -90/+105 |
| | | | | | | | | | | | | | 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 Storchaka | 2013-08-29 | 7 | -44/+67 |
| |\ \ | |/ | |||||
| | * | Issue #18760: Improved cross-references in the xml package. | Serhiy Storchaka | 2013-08-29 | 7 | -44/+67 |
| | | | |||||
| * | | Issue #11798: TestSuite now drops references to own tests after execution. | Andrew Svetlov | 2013-08-28 | 1 | -3/+12 |
| | | | |||||
| * | | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-27 | 5 | -15/+153 |
| | | | | | | | | | | | 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 Storchaka | 2013-08-27 | 1 | -2/+1 |
| |\ \ | |/ | | | | | error messages and comments. | ||||
| | * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -2/+1 |
| | | | | | | | | | error messages and comments. | ||||
| * | | Clarify pyexpat documentation in StartElementHandler | Eli Bendersky | 2013-08-26 | 1 | -2/+4 |
| |\ \ | |/ | |||||
| | * | Clarify pyexpat documentation in StartElementHandler | Eli Bendersky | 2013-08-26 | 1 | -2/+4 |
| | | | |||||
| * | | Merge doc fix from 3.3 | Eli Bendersky | 2013-08-25 | 1 | -8/+8 |
| |\ \ | |/ | |||||
| | * | Update XMLParser.close documentation and fix formatting. | Eli Bendersky | 2013-08-25 | 1 | -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 Melotti | 2013-08-25 | 1 | -2/+2 |
| | | | |||||
| * | | Clarify the documentation of XMLParser.close | Eli Bendersky | 2013-08-24 | 1 | -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 Storchaka | 2013-08-23 | 6 | -77/+91 |
| |\ \ | |/ | |||||
| | * | Issue #18757: Improved cross-references in the concurrent package. | Serhiy Storchaka | 2013-08-23 | 6 | -77/+91 |
| | | | |||||
| * | | #18796: improve documentation of the file argument of dis.show_code. ↵ | Ezio Melotti | 2013-08-23 | 1 | -1/+2 |
| | | | | | | | | | Initial patch by Vajrasky Kok. | ||||
| * | | merge emphasized discouragement of overriding __import__ | Brett Cannon | 2013-08-23 | 1 | -4/+5 |
| |\ \ | |/ | |||||
| | * | Emphasize that people should not override __import__. | Brett Cannon | 2013-08-23 | 1 | -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.devpoll | Victor Stinner | 2013-08-21 | 1 | -0/+31 |
| | | | | | | | | | | | | | objects. Add also tests on fileno() method and closed attribute of select.epoll and select.kqueue. | ||||
| * | | Issue #18761: Improved cross-references in email documentation. | Serhiy Storchaka | 2013-08-19 | 10 | -157/+210 |
| |\ \ | |/ | |||||
| | * | Issue #18761: Improved cross-references in email documentation. | Serhiy Storchaka | 2013-08-19 | 10 | -156/+208 |
| | | | |||||
| * | | Issue #18759: Merged updates from 3.3. | Vinay Sajip | 2013-08-16 | 2 | -12/+16 |
| |\ \ | |/ | |||||
| | * | Issue #18759: Improved cross-references in logging documentation. | Vinay Sajip | 2013-08-16 | 2 | -12/+16 |
| | | | |||||
| * | | Issue #18743: Fix references to non-existant "StringIO" module. | Serhiy Storchaka | 2013-08-16 | 5 | -7/+7 |
| |\ \ | |/ | |||||
| | * | Issue #18743: Fix references to non-existant "StringIO" module. | Serhiy Storchaka | 2013-08-16 | 5 | -7/+7 |
| | | | |||||
| * | | Fix the default placeholder in textwrap.shorten() to be " [...]". | Antoine Pitrou | 2013-08-16 | 1 | -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 Pitrou | 2013-08-16 | 1 | -3/+3 |
| |\ \ | |/ | |||||
| | * | Issue #16190: fix random module recommendation to use ssl.RAND_bytes(). | Antoine Pitrou | 2013-08-16 | 1 | -3/+3 |
| | | | |||||
| | * | Remove errant fourth '.' from ellipsis in datetime documentation. | David Wolever | 2013-08-14 | 1 | -2/+2 |
| | | | |||||
| * | | Issue #18673: Add versionchanged to docs | Christian Heimes | 2013-08-16 | 1 | -0/+4 |
| | | | |||||
| * | | Issue #18673: Add O_TMPFILE to os module. O_TMPFILE requires Linux kernel | Christian Heimes | 2013-08-16 | 1 | -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 Wolever | 2013-08-14 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #8713: Support alternative start methods in multiprocessing on Unix. | Richard Oudkerk | 2013-08-14 | 1 | -84/+156 |
| | | | | | | | | | See http://hg.python.org/sandbox/sbt#spawn | ||||
| * | | Issue 18724: Fix typo noticed by Susan Tan. | Ned Deily | 2013-08-13 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Issue 18724: Fix typo noticed by Susan Tan. | Ned Deily | 2013-08-13 | 1 | -1/+1 |
| | | | |||||
| | * | Documenting that json.load may raise a ValueError. | Felix Crux | 2013-08-12 | 1 | -0/+2 |
| | | | | | | | | | | | Issue #18680: JSONDecoder should document that it raises a ValueError for malformed data | ||||
| * | | Documenting that json.load may raise a ValueError. | Felix Crux | 2013-08-12 | 1 | -0/+2 |
| | | | | | | | | | | | Issue #18680: JSONDecoder should document that it raises a ValueError for malformed data | ||||
| * | | Documenting that json.load may raise a ValueError. | Felix Crux | 2013-08-12 | 1 | -0/+2 |
| | | | | | | | | | | | Issue #18680: JSONDecoder should document that it raises a ValueError for malformed data | ||||
| * | | Documenting that json.load may raise a ValueError. | Felix Crux | 2013-08-12 | 1 | -0/+2 |
| | | | | | | | | | | | Issue #18680: JSONDecoder should document that it raises a ValueError for malformed data | ||||
