summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Close #13266: Add inspect.unwrapNick Coghlan2013-07-282-3/+28
| | | | Initial patch by Daniel Urban and Aaron Iles
* (Merge 3.3) doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tagVictor Stinner2013-07-281-0/+2
|\
| * doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tagVictor Stinner2013-07-281-0/+2
| |
* | Merge with 3.3Terry Jan Reedy2013-07-271-1/+1
|\ \ | |/
| * Issue #18573: Complete copy-paste from assertRaises entry to assertWarns entry.Terry Jan Reedy2013-07-271-1/+1
| |
* | #17818: aifc.getparams now returns a namedtuple.R David Murray2013-07-252-1/+9
| | | | | | | | Patch by Claudiu Popa.
* | Merge #15130: remove repeat of abstract paragraph from socket howto body.R David Murray2013-07-251-6/+0
|\ \ | |/
| * #15130: remove repeat of abstract paragraph from socket howto body.R David Murray2013-07-251-6/+0
| | | | | | | | Patch by Tshepang Lekhonkhobe.
* | #16937: merge with 3.3.Ezio Melotti2013-07-251-2/+2
|\ \ | |/
| * #16937: document that stdin is always buffered, even when -u is used. Patch ↵Ezio Melotti2013-07-251-2/+2
| | | | | | | | by Elena Oat.
* | Closes #18541: merged update from 3.3.Vinay Sajip2013-07-241-57/+19
|\ \ | |/
| * Issue #18541: simplified LoggerAdapter example.Vinay Sajip2013-07-241-57/+19
| |
* | closes issue18042 -- a `unique` decorator is added to enum.pyEthan Furman2013-07-191-27/+66
| | | | | | | | | | The docs also clarify the 'Interesting Example' duplicate-free enum is for demonstration purposes.
* | Closes #18471: Fix typo in heapq documentation (reported by François Pinard).Ned Deily2013-07-161-1/+1
|\ \ | |/
| * Issue #18471: Fix typo in heapq documentation (reported by François Pinard).Ned Deily2013-07-161-1/+1
| |
* | - Issue #18440: Clarify that `hash()` can truncate the value returned from anBarry Warsaw2013-07-152-8/+24
|\ \ | |/ | | | | object's custom `__hash__()` method.
| * - Issue #18440: Clarify that `hash()` can truncate the value returned from anBarry Warsaw2013-07-152-8/+24
| | | | | | | | object's custom `__hash__()` method.
* | Close issue 17482: don't overwrite __wrapped__Nick Coghlan2013-07-152-2/+16
| |
* | Closes #18452: fix several "occurrence" typos (reported by Févry Thibault).Ned Deily2013-07-143-4/+4
|\ \ | |/
| * Issue #18452: fix several "occurrence" typos (reported by Févry Thibault).Ned Deily2013-07-143-4/+4
| |
* | #18389: Clarify that relpath does not access the file system.R David Murray2013-07-121-2/+4
|\ \ | |/ | | | | Initial patch by Madison May.
| * #18389: Clarify that relpath does not access the file system.R David Murray2013-07-121-2/+4
| | | | | | | | Initial patch by Madison May.
* | Closes #18433: Merged documentation update from 3.3.Vinay Sajip2013-07-121-3/+10
|\ \ | |/
| * Issue #18433: Clarified venv documentation.Vinay Sajip2013-07-121-3/+10
| |
* | Merged changes.Vinay Sajip2013-07-121-0/+1
|\ \ | |/
| * Issue #18434: Updated example script to tidy up resources.Vinay Sajip2013-07-121-0/+1
| |
* | Closes #18434: Merged documentation update from 3.3.Vinay Sajip2013-07-121-21/+28
|\ \ | |/
| * Issue #18434: Updated example script in venv docs to use setuptools rather ↵Vinay Sajip2013-07-121-21/+28
| | | | | | | | than Distribute.
* | Issue #18085: Add missed const modifier for some entries in refcounts.dat.Serhiy Storchaka2013-07-111-76/+76
|\ \ | |/
| * Issue #18085: Add missed const modifier for some entries in refcounts.dat.Serhiy Storchaka2013-07-111-77/+77
| |
* | 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.