summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Rename contextlib.ignored() to contextlib.ignore().Raymond Hettinger2013-10-111-3/+3
|
* #18764: p(rint) -> p in pdb docs.R David Murray2013-10-101-1/+7
| | | | | Missed changing the doc for the command itself, patch for that also by Connor Osborn.
* upgrade unicode db to 6.3.0 (closes #19221)Benjamin Peterson2013-10-101-4/+4
|
* 18764: remove the problematic 'print' alias for the PDB 'p' command.R David Murray2013-10-102-3/+19
| | | | | | So that it no longer shadows the print function. Patch by Connor Osborn, doc and test changes by R. David Murray.
* Close #16742: Fix misuse of memory allocations in PyOS_Readline()Victor Stinner2013-10-102-0/+14
| | | | | | | | | | | | | | | | The GIL must be held to call PyMem_Malloc(), whereas PyOS_Readline() releases the GIL to read input. The result of the C callback PyOS_ReadlineFunctionPointer must now be a string allocated by PyMem_RawMalloc() or PyMem_RawRealloc() (or NULL if an error occurred), instead of a string allocated by PyMem_Malloc() or PyMem_Realloc(). Fixing this issue was required to setup a hook on PyMem_Malloc(), for example using the tracemalloc module. PyOS_Readline() copies the result of PyOS_ReadlineFunctionPointer() into a new buffer allocated by PyMem_Malloc(). So the public API of PyOS_Readline() does not change.
* Issue #18874: _PyObject_Malloc/Realloc/Free() now falls back onVictor Stinner2013-10-101-2/+2
| | | | | | _PyMem_RawMalloc/Realloc/Free, instead of _PyMem_Malloc/Realloc/Free. So it becomes possible to use the fast pymalloc allocator for the PYMEM_DOMAIN_MEM domain (PyMem_Malloc/Realloc/Free functions).
* Issue #15805: Add contextlib.redirect_stdout()Raymond Hettinger2013-10-101-0/+31
|
* mergeRaymond Hettinger2013-10-101-6/+5
|\
| * Issue #19005: Fix documentation for PyIter_Next().Raymond Hettinger2013-10-101-6/+5
| |
* | Closes #19200: small grammar fix in multiprocessing docs. Thanks to Elazar ↵Georg Brandl2013-10-091-1/+1
| | | | | | | | Gershuni.
* | Close #19199: Remove ``PyThreadState.tick_counter`` fieldVictor Stinner2013-10-091-1/+2
| |
* | #19194: Improved cross-references in the fcntl module documentation.Serhiy Storchaka2013-10-091-20/+24
|\ \ | |/
| * #19194: Improved cross-references in the fcntl module documentation.Serhiy Storchaka2013-10-091-20/+24
| |
* | #19196: Improved cross-references in distutils documentation.Serhiy Storchaka2013-10-092-14/+17
|\ \ | |/
| * #19196: Improved cross-references in distutils documentation.Serhiy Storchaka2013-10-092-14/+17
| |
* | Issue #19190: Improve cross-references in builtin types and functions ↵Serhiy Storchaka2013-10-095-91/+100
|\ \ | |/ | | | | documentation.
| * Issue #19190: Improve cross-references in builtin types and functions ↵Serhiy Storchaka2013-10-095-91/+100
| | | | | | | | documentation.
* | Issue 19195: Improved cross-references in C API documentation.Serhiy Storchaka2013-10-0910-33/+35
|\ \ | |/
| * Issue 19195: Improved cross-references in C API documentation.Serhiy Storchaka2013-10-0910-33/+35
| |
* | Issue #19193: Improved cross-references in the tutorial.Serhiy Storchaka2013-10-092-33/+37
|\ \ | |/
| * Issue #19193: Improved cross-references in the tutorial.Serhiy Storchaka2013-10-092-33/+37
| |
* | Issue #18948: improve SuppressCoreFiles to include Windows crash popup ↵Antoine Pitrou2013-10-081-7/+15
| | | | | | | | | | | | suppression, and use it in more tests. Patch by Valerie Lambert and Zachary Ware.
* | merge with 3.3Georg Brandl2013-10-081-1/+1
|\ \ | |/
| * Minor grammar fix.Georg Brandl2013-10-081-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-081-3/+3
|\ \ | |/
| * Clarify two points about division and shifting. Suggested by Albert Hofkamp ↵Georg Brandl2013-10-081-3/+3
| | | | | | | | on docs@.
* | merge with 3.3Georg Brandl2013-10-081-1/+1
|\ \ | |/
| * Fix wrong link.Georg Brandl2013-10-081-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-081-1/+1
|\ \ | |/
| * Add "->" as a delimiter token. Found by James Harding on docs@.Georg Brandl2013-10-081-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-081-1/+9
|\ \ | |/
| * Closes #19178: some more cross-references about packages in glossary. Patch ↵Georg Brandl2013-10-081-1/+9
| | | | | | | | by Berker Peksag.
* | merge with 3.3Georg Brandl2013-10-061-1/+5
|\ \ | |/
| * Closes #1215: document better why it is not a good idea to catch e.g. ↵Georg Brandl2013-10-061-1/+5
| | | | | | | | | | | | SIGSEGV and refer to faulthandler. Patch by Martin Pool.
* | merge with 3.3Georg Brandl2013-10-061-3/+1
|\ \ | |/
| * Extending example: use Py_RETURN_NONEGeorg Brandl2013-10-061-3/+1
| |
* | merge with 3.3Georg Brandl2013-10-061-4/+4
|\ \ | |/
| * Use the platform-independent way of calling a script from the shell: "python ↵Georg Brandl2013-10-061-4/+4
| | | | | | | | | | | | prog.py", not "prog.py" Found by Micheal Wells on docs@.
* | merge with 3.3Georg Brandl2013-10-061-2/+2
|\ \ | |/
| * Fix name of the "exist_ok" argument. Found by Neil Bushong on docs@.Georg Brandl2013-10-061-2/+2
| |
* | merge with 3.3Georg Brandl2013-10-061-3/+3
|\ \ | |/
| * Fix: >= and so on are usually called "comparison operators", not "logical ↵Georg Brandl2013-10-061-3/+3
| | | | | | | | operators". Found by Tom Kalt on docs@.
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Fix typo in example file name. Found by John Bokma on docs@.Georg Brandl2013-10-061-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-061-2/+2
|\ \ | |/
| * Fix: win32_ver returns a 4-tuple. Found by Andrew Berg on docs@.Georg Brandl2013-10-061-2/+2
| |
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Fix typo in function name.Georg Brandl2013-10-061-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-061-5/+3
|\ \ | |/
| * Closes #15432: GzipFile mtime argument is new in 3.1.Georg Brandl2013-10-061-5/+3
| |