summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge #17987: properly document support.captured_xxx.R David Murray2013-07-111-7/+19
|\
| * #17987: properly document support.captured_xxx.R David Murray2013-07-111-7/+19
| | | | | | | | Patch by Dmi Baranov.
* | Issue #18336. Fix a link to StreamReader's read() method.Serhiy Storchaka2013-07-111-1/+1
|\ \ | |/
| * Issue #18336. Fix a link to StreamReader's read() method.Serhiy Storchaka2013-07-111-1/+1
| |
* | #18403: merge with 3.3.Ezio Melotti2013-07-081-1/+1
|\ \ | |/
| * #18403: fix an off-by-one typo noticed by Xue Fuqiao.Ezio Melotti2013-07-081-1/+1
| |
* | (3.3->default) Cleanup of documentation change from #17860Ronald Oussoren2013-07-071-4/+7
|\ \ | |/ | | | | Reformulated the textual change, and applied it to the docstring as well.
| * Cleanup of documentation change from #17860Ronald Oussoren2013-07-071-4/+7
| | | | | | | | Reformulated the textual change, and applied it to the docstring as well.
* | Issue #3329: Implement the PEP 445Victor Stinner2013-07-072-15/+174
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add new enum: * PyMemAllocatorDomain Add new structures: * PyMemAllocator * PyObjectArenaAllocator Add new functions: * PyMem_RawMalloc(), PyMem_RawRealloc(), PyMem_RawFree() * PyMem_GetAllocator(), PyMem_SetAllocator() * PyObject_GetArenaAllocator(), PyObject_SetArenaAllocator() * PyMem_SetupDebugHooks() Changes: * PyMem_Malloc()/PyObject_Realloc() now always call malloc()/realloc(), instead of calling PyObject_Malloc()/PyObject_Realloc() in debug mode. * PyObject_Malloc()/PyObject_Realloc() now falls back to PyMem_Malloc()/PyMem_Realloc() for allocations larger than 512 bytes. * Redesign debug checks on memory block allocators as hooks, instead of using C macros
* | (3.3->default) Issue #17860: explicitly mention that std* streams are opened ↵Ronald Oussoren2013-07-061-2/+4
|\ \ | |/ | | | | | | | | | | | | | | in binary mode by default. The documentation does mention that the streams are opened in text mode when univeral_newlines is true, but not that that they are opened in binary mode when that argument is false and that seems to confuse at least some users.
| * Issue #17860: explicitly mention that std* streams are opened in binary mode ↵Ronald Oussoren2013-07-061-2/+4
| | | | | | | | | | | | | | | | | | by default. The documentation does mention that the streams are opened in text mode when univeral_newlines is true, but not that that they are opened in binary mode when that argument is false and that seems to confuse at least some users.
* | Issue #15767: back out 8a0ed9f63c6e, finishing the removal ofBrett Cannon2013-07-043-16/+2
| | | | | | | | ModuleNotFoundError.
* | Issue #15767: Revert 3a50025f1900 for ModuleNotFoundErrorBrett Cannon2013-07-044-16/+9
| |
* | Issue #14206: Clarify docs for Queue.join_cancel_thread().Richard Oudkerk2013-07-021-0/+7
|\ \ | |/
| * Issue #14206: Clarify docs for Queue.join_cancel_thread().Richard Oudkerk2013-07-021-0/+7
| |
* | Issue #17273: Clarify that pool methods can only be used by parent process.Richard Oudkerk2013-07-021-0/+6
|\ \ | |/
| * Issue #17273: Clarify that pool methods can only be used by parent process.Richard Oudkerk2013-07-021-0/+6
| |
* | Issue 18240: The HMAC module is no longer restricted to bytes and acceptsChristian Heimes2013-07-011-6/+12
| | | | | | | | any bytes-like object, e.g. memoryview. Original patch by Jonas Borgström.
* | (merge) Issue #7136: In the Idle File menu, "New Window" is renamed "New File".Terry Jan Reedy2013-07-011-2/+2
|\ \ | |/ | | | | Patch by Tal Einat, Roget Serwy, and Todd Rovito.
| * Issue #7136: In the Idle File menu, "New Window" is renamed "New File".Terry Jan Reedy2013-07-011-2/+2
| | | | | | | | Patch by Tal Einat, Roget Serwy, and Todd Rovito.
* | Merge with 3.3Terry Jan Reedy2013-06-291-1/+1
|\ \ | |/
| * Issue #18237: Fix assertRaisesRegexp error caought by Jeff Tratner.Terry Jan Reedy2013-06-291-1/+1
| |
* | Added rationale for defaulting to 1 in the functional API.Ethan Furman2013-06-291-0/+4
| |
* | Added example to enum docs show access to name and value attributes of enum ↵Ethan Furman2013-06-281-2/+10
| | | | | | | | members.
* | #18111: Add What's New entry for max/min default.R David Murray2013-06-281-0/+3
| |
* | Issue #17914: Use os.cpu_count() instead of multiprocessing.cpu_count() whereCharles-François Natali2013-06-281-1/+1
| | | | | | | | applicable.
* | Merge #18311: fix typo.R David Murray2013-06-261-1/+1
|\ \ | |/
| * #18311: fix typo.R David Murray2013-06-261-1/+1
| |
* | Issue 18111: Add a default argument to min() and max()Raymond Hettinger2013-06-251-14/+20
| |
* | Issue #18164: merge from 3.3Ned Deily2013-06-241-1/+3
|\ \ | |/
| * Issue #18164: Clarify the embedding docs regarding link options.Ned Deily2013-06-241-1/+3
| |
* | Merge.Richard Oudkerk2013-06-241-1/+1
|\ \ | |/
| * Fix typo.Richard Oudkerk2013-06-241-1/+1
| |
* | Merge.Richard Oudkerk2013-06-241-2/+3
|\ \ | |/
| * Clarify note and fix typo.Richard Oudkerk2013-06-241-2/+3
| |
* | Issue #15818: Merge.Richard Oudkerk2013-06-241-1/+1
|\ \ | |/
| * Issue #15818: Typo in docs.Richard Oudkerk2013-06-241-1/+1
| |
* | Issue #18277: Merge.Richard Oudkerk2013-06-241-0/+17
|\ \ | |/
| * Issue #18277: Document quirks of multiprocessing queue.Richard Oudkerk2013-06-241-0/+17
| |
* | Merge #18179: reflow paragraphs.R David Murray2013-06-231-24/+24
|\ \ | |/
| * #18179: reflow paragraphs.R David Murray2013-06-231-24/+24
| |
* | Merge #18179: document the local_hostname parameter.R David Murray2013-06-231-4/+11
|\ \ | |/ | | | | Original patch by Berker Peksag.
| * #18179: document the local_hostname parameter.R David Murray2013-06-231-4/+11
| | | | | | | | Original patch by Berker Peksag.
* | #11390: convert doctest CLI to argparse and add -o and -f options.R David Murray2013-06-232-3/+16
| | | | | | | | | | | | This provides a way to specify arbitrary doctest options when using the CLI interface to process test files, just as one can when calling testmod or testfile programmatically.
* | Issue #11016: Add C implementation of the stat module as _statChristian Heimes2013-06-222-2/+56
| |
* | ... also TLSv1.1 and TLSv1.2Christian Heimes2013-06-221-0/+3
| |
* | Add my SSL module patches to whatsnew 3.4Christian Heimes2013-06-221-0/+12
| |
* | merge for issue #18278Brett Cannon2013-06-211-0/+2
|\ \ | |/
| * Issue #18278: properly document how the loaders are called for FileFinderBrett Cannon2013-06-211-0/+2
| |
* | #12716: reorganize docs for os module a bitAndrew Kuchling2013-06-211-76/+70
| | | | | | | | | | | | | | | | | | | | | | | | * Move the constants used by os.open() to after the description of os.open(), instead of putting them in their own section. * Move RTLD_* constants to "Miscellaneous System Information" section, and mention the sys functions they're used with. * Mention dir_fd parameter in os.open() text. * Typo fix ("are a supported by").