Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #19209: fix structseq test | Christian Heimes | 2013-10-11 | 1 | -1/+1 |
| | |||||
* | Issue #19209: Remove import of copyreg from the os module to speed up | Christian Heimes | 2013-10-11 | 5 | -30/+32 |
| | | | | | | interpreter startup. stat_result and statvfs_result are now hard-coded to reside in the os module. The patch is based on Victor Stinner's patch. | ||||
* | Also test that the locale module isn't loaded during normal startup | Christian Heimes | 2013-10-11 | 1 | -0/+2 |
| | |||||
* | Issue #19205 fix 406529adf156 | Christian Heimes | 2013-10-11 | 1 | -1/+1 |
| | | | | I forgot to hit save. | ||||
* | Issue #19205: Don't import the 're' module in site and sysconfig module to | Christian Heimes | 2013-10-11 | 4 | -4/+24 |
| | | | | to speed up interpreter start. | ||||
* | Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io ↵ | Antoine Pitrou | 2013-10-11 | 6 | -22/+49 |
| | | | | module instead of the full locale module. | ||||
* | Fix expected checksum for new unicodedata (after full rebuild) | Antoine Pitrou | 2013-10-11 | 1 | -1/+1 |
| | |||||
* | #19192: Give up on time.xmlrpc.com as an xmlrpc network test. | R David Murray | 2013-10-11 | 2 | -29/+17 |
| | | | | | | | | | | | | | time.xmlrpc.com has come and gone over the years, and has been gone again for a while. The test did test one thing that the current xmlrpc tests don't: the use of multiple levels of attribute names in the call. So in addition to removing the network test, we add a test in xmlrpc of dotted name access. There should also be a test for when dotted name access is disallowed, but that requires more extensive test harness refactoring, and in any case was not tested by the network test we are deleting, since it is a server-side setting. This is a slightly simplified version of a patch by Vajrasky Kok. | ||||
* | Rename contextlib.ignored() to contextlib.ignore(). | Raymond Hettinger | 2013-10-11 | 4 | -13/+13 |
| | |||||
* | merge 3.3 | Benjamin Peterson | 2013-10-11 | 1 | -1/+1 |
|\ | |||||
| * | replace hardcoded version | Benjamin Peterson | 2013-10-11 | 1 | -1/+1 |
| | | |||||
* | | merge 3.3 | Benjamin Peterson | 2013-10-11 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | make sure the docstring is never out of date wrt unicode data version | Benjamin Peterson | 2013-10-11 | 1 | -1/+1 |
| | | |||||
* | | merge heads | Benjamin Peterson | 2013-10-10 | 1 | -1/+7 |
|\ \ | |||||
| * | | #18764: p(rint) -> p in pdb docs. | R David Murray | 2013-10-10 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | Missed changing the doc for the command itself, patch for that also by Connor Osborn. | ||||
* | | | merge 3.3 (#19220) | Benjamin Peterson | 2013-10-10 | 1 | -3/+1 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | remove url from docstring (closes #19220) | Benjamin Peterson | 2013-10-10 | 1 | -2/+1 |
| | | |||||
* | | upgrade unicode db to 6.3.0 (closes #19221) | Benjamin Peterson | 2013-10-10 | 8 | -17153/+17195 |
| | | |||||
* | | 18764: remove the problematic 'print' alias for the PDB 'p' command. | R David Murray | 2013-10-10 | 5 | -11/+31 |
| | | | | | | | | | | | | 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 Stinner | 2013-10-10 | 5 | -8/+41 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 on | Victor Stinner | 2013-10-10 | 2 | -19/+21 |
| | | | | | | | | | | | | _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 #18874: PyCode_New() now ensures that the filename is a ready Unicode | Victor Stinner | 2013-10-10 | 1 | -0/+5 |
| | | | | | | | | | | string. This change does nothing is most cases, but it is useful on Windows in some cases. | ||||
* | | Issue #15805: Add contextlib.redirect_stdout() | Raymond Hettinger | 2013-10-10 | 4 | -1/+81 |
| | | |||||
* | | merge | Raymond Hettinger | 2013-10-10 | 1 | -6/+5 |
|\ \ | |/ | |||||
| * | Issue #19005: Fix documentation for PyIter_Next(). | Raymond Hettinger | 2013-10-10 | 1 | -6/+5 |
| | | |||||
* | | Repair format of NEWS entry. | Tim Peters | 2013-10-09 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Repair format of NEWS entry. | Tim Peters | 2013-10-09 | 1 | -1/+2 |
| | | |||||
* | | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 1 | -0/+2 |
| | | |||||
* | | Closes #19200: small grammar fix in multiprocessing docs. Thanks to Elazar ↵ | Georg Brandl | 2013-10-09 | 1 | -1/+1 |
| | | | | | | | | Gershuni. | ||||
* | | Close #19199: Remove ``PyThreadState.tick_counter`` field | Victor Stinner | 2013-10-09 | 5 | -13/+4 |
| | | |||||
* | | #19194: Improved cross-references in the fcntl module documentation. | Serhiy Storchaka | 2013-10-09 | 1 | -20/+24 |
|\ \ | |/ | |||||
| * | #19194: Improved cross-references in the fcntl module documentation. | Serhiy Storchaka | 2013-10-09 | 1 | -20/+24 |
| | | |||||
* | | #19196: Improved cross-references in distutils documentation. | Serhiy Storchaka | 2013-10-09 | 2 | -14/+17 |
|\ \ | |/ | |||||
| * | #19196: Improved cross-references in distutils documentation. | Serhiy Storchaka | 2013-10-09 | 2 | -14/+17 |
| | | |||||
* | | Issue #19190: Improve cross-references in builtin types and functions ↵ | Serhiy Storchaka | 2013-10-09 | 5 | -91/+100 |
|\ \ | |/ | | | | | documentation. | ||||
| * | Issue #19190: Improve cross-references in builtin types and functions ↵ | Serhiy Storchaka | 2013-10-09 | 5 | -91/+100 |
| | | | | | | | | documentation. | ||||
* | | Issue 19195: Improved cross-references in C API documentation. | Serhiy Storchaka | 2013-10-09 | 10 | -33/+35 |
|\ \ | |/ | |||||
| * | Issue 19195: Improved cross-references in C API documentation. | Serhiy Storchaka | 2013-10-09 | 10 | -33/+35 |
| | | |||||
* | | Issue #19193: Improved cross-references in the tutorial. | Serhiy Storchaka | 2013-10-09 | 2 | -33/+37 |
|\ \ | |/ | |||||
| * | Issue #19193: Improved cross-references in the tutorial. | Serhiy Storchaka | 2013-10-09 | 2 | -33/+37 |
| | | |||||
* | | Whitespace normalization. | Tim Peters | 2013-10-09 | 1 | -16/+16 |
| | | |||||
* | | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 2 | -3/+23 |
|\ \ | |/ | |||||
| * | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 2 | -3/+23 |
| | | |||||
* | | Issue #18948: improve SuppressCoreFiles to include Windows crash popup ↵ | Antoine Pitrou | 2013-10-08 | 8 | -94/+87 |
| | | | | | | | | | | | | suppression, and use it in more tests. Patch by Valerie Lambert and Zachary Ware. | ||||
* | | merge with 3.3 | Georg Brandl | 2013-10-08 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Minor grammar fix. | Georg Brandl | 2013-10-08 | 1 | -1/+1 |
| | | |||||
* | | merge with 3.3 | Georg Brandl | 2013-10-08 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Clarify two points about division and shifting. Suggested by Albert Hofkamp ↵ | Georg Brandl | 2013-10-08 | 1 | -3/+3 |
| | | | | | | | | on docs@. | ||||
* | | merge with 3.3 | Georg Brandl | 2013-10-08 | 1 | -1/+1 |
|\ \ | |/ |