Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | never retain a generator's caller's exception state on the generator after a ↵ | Benjamin Peterson | 2011-07-03 | 1 | -4/+36 |
| | | | | | | | yield/return This requires some trickery to properly save the exception state if the generator creates its own exception state. | ||||
* | merge heads | Benjamin Peterson | 2011-07-03 | 1 | -60/+153 |
|\ | |||||
| * | Removed some unused local variables. | Vinay Sajip | 2011-07-02 | 1 | -2/+0 |
| | | |||||
| * | Closes #12291: Fixed bug which was found when doing multiple loads from one ↵ | Vinay Sajip | 2011-07-02 | 1 | -60/+155 |
| | | | | | | | | stream. | ||||
* | | restore a generator's caller's exception state both on yield and (last) return | Benjamin Peterson | 2011-07-03 | 1 | -4/+5 |
|/ | | | | | | This prevents generator exception state from leaking into the caller. Closes #12475. | ||||
* | fix indentation | Benjamin Peterson | 2011-06-21 | 1 | -6/+6 |
| | |||||
* | fix indentation | Benjamin Peterson | 2011-06-21 | 1 | -1/+1 |
| | |||||
* | Issue #9670: Increase the default stack size for secondary threads on | Ned Deily | 2011-05-28 | 1 | -0/+12 |
|\ | | | | | | | | | | | Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (patch by Ronald Oussoren) | ||||
| * | Issue #9670: Increase the default stack size for secondary threads on | Ned Deily | 2011-05-28 | 1 | -0/+12 |
| | | | | | | | | | | | | Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (patch by Ronald Oussoren) | ||||
* | | merge 3.1 | Benjamin Peterson | 2011-05-27 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | fix spacing | Benjamin Peterson | 2011-05-27 | 1 | -2/+2 |
| | | |||||
* | | merge 3.1 | Benjamin Peterson | 2011-05-27 | 1 | -51/+51 |
|\ \ | |/ | |||||
| * | fix indentation | Benjamin Peterson | 2011-05-27 | 1 | -50/+50 |
| | | |||||
* | | (Merge 3.1) Issue #11614: import __hello__ prints "Hello World!". Patch written | Victor Stinner | 2011-05-16 | 1 | -8/+11 |
|\ \ | |/ | | | | | by Andreas Stührk. | ||||
| * | Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas | Victor Stinner | 2011-05-16 | 1 | -8/+11 |
| | | | | | | | | Stührk. | ||||
* | | Merge #6498 fix from 3.1. | Georg Brandl | 2011-05-15 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Closes #6498: fix several misspellings of "SystemExit" as "SystemError". | Georg Brandl | 2011-05-15 | 1 | -1/+1 |
| | | |||||
* | | Issue #1856: Avoid crashes and lockups when daemon threads run while the | Antoine Pitrou | 2011-05-04 | 3 | -6/+19 |
| | | | | | | | | | | interpreter is shutting down; instead, these threads are now killed when they try to take the GIL. | ||||
* | | Issue #10914: Initialize correctly the filesystem codec when creating a new | Victor Stinner | 2011-04-26 | 2 | -8/+16 |
| | | | | | | | | | | | | | | subinterpreter to fix a bootstrap issue with codecs implemented in Python, as the ISO-8859-15 codec. Add fscodec_initialized attribute to the PyInterpreterState structure. | ||||
* | | Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0) | Victor Stinner | 2011-04-26 | 1 | -1/+1 |
| | | | | | | | | | | ... instead of PyErr_Print() because we don't need to set sys attributes, the sys module is destroyed just after printing the error. | ||||
* | | Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* | Antoine Pitrou | 2011-04-27 | 1 | -0/+17 |
| | | | | | | | | | | APIs, to avoid a crash with the pthread implementation in RHEL 5. Patch by Charles-François Natali. | ||||
* | | MERGE: Up-port changeset 5cf8f6da8743 (closes #11890) | Jesus Cea | 2011-04-20 | 1 | -56/+4 |
|\ \ | |/ | |||||
| * | Up-port changeset 5cf8f6da8743 (closes #11890) | Jesus Cea | 2011-04-20 | 1 | -56/+4 |
| | | |||||
* | | #5057: Merge with 3.1. | Ezio Melotti | 2011-04-15 | 1 | -0/+18 |
|\ \ | |/ | |||||
| * | Issue #5057: fix a bug in the peepholer that led to non-portable pyc files ↵ | Ezio Melotti | 2011-04-15 | 1 | -0/+18 |
| | | | | | | | | between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. "\U00012345"[0]). | ||||
* | | merge 3.1 | Benjamin Peterson | 2011-04-12 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | make assigning to a bytes literal a syntax error (closes #11506) | Benjamin Peterson | 2011-04-12 | 1 | -0/+1 |
| | | |||||
* | | Issue9670: Merge backout to 3.2. | Ned Deily | 2011-04-09 | 1 | -12/+0 |
|\ \ | |/ | |||||
| * | Issue9670: Back out changeset 378b40d71175; test fails on other platforms | Ned Deily | 2011-04-09 | 1 | -12/+0 |
| | | | | | | | | and on OS X with pydebug. | ||||
* | | Issue #9670: merge with 3.2 | Ned Deily | 2011-04-09 | 1 | -0/+12 |
|\ \ | |/ | |||||
| * | Issue #9670: Increase the default stack size for secondary threads on | Ned Deily | 2011-04-09 | 1 | -0/+12 |
| | | | | | | | | | | | | Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (Patch by Ronald Oussoren) | ||||
| * | Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file | Victor Stinner | 2011-03-21 | 1 | -1/+11 |
| | | | | | | | | | | doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1 bytes). | ||||
* | | Removed 'or long integer' from bin, oct, and hex docstrings. | Alexander Belopolsky | 2011-04-07 | 1 | -3/+3 |
| | | |||||
* | | sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not | Victor Stinner | 2011-03-31 | 1 | -2/+3 |
| | | | | | | | | called yet: detect bootstrap (startup) issues earlier. | ||||
* | | Issue #11618: Fix the timeout logic in threading.Lock.acquire() under | Antoine Pitrou | 2011-03-30 | 1 | -59/+8 |
| | | | | | | | | Windows. | ||||
* | | Fix #11586: typo in initfsencoding() | Victor Stinner | 2011-03-20 | 1 | -1/+1 |
| | | | | | | | | Patch written by Ray Allen. | ||||
* | | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 3 | -4/+4 |
|\ \ | |/ | |||||
| * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 3 | -4/+4 |
| | | |||||
* | | Issue 11510: Fix BUILD_SET optimizer bug. | Raymond Hettinger | 2011-03-15 | 1 | -1/+2 |
| | | |||||
* | | #11515: Merge with 3.1. | Ezio Melotti | 2011-03-15 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | #11515: fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
| | | |||||
* | | Merge build identification to 3.2 branch. | Georg Brandl | 2011-03-06 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Commit the hg build identification patch from the pymigr repo. | Georg Brandl | 2011-03-05 | 1 | -0/+3 |
| | | |||||
| * | Merged revisions 88430 via svnmerge from | Georg Brandl | 2011-02-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | svn+ssh://svn.python.org/python/branches/py3k ........ r88430 | georg.brandl | 2011-02-15 20:48:59 +0100 (Di, 15 Feb 2011) | 1 line #730467: Another small AIX fix. ........ | ||||
| * | Merged revisions 87796 via svnmerge from | David Malcolm | 2011-01-06 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87796 | david.malcolm | 2011-01-06 12:01:36 -0500 (Thu, 06 Jan 2011) | 6 lines Issue #10655: Fix the build on PowerPC on Linux with GCC when building with timestamp profiling (--with-tsc): the preprocessor test for the PowerPC support now looks for "__powerpc__" as well as "__ppc__": the latter seems to only be present on OS X; the former is the correct one for Linux with GCC. ........ | ||||
| * | Merged revisions 87607 via svnmerge from | Benjamin Peterson | 2011-01-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87607 | benjamin.peterson | 2011-01-01 08:28:31 -0600 (Sat, 01 Jan 2011) | 1 line update copyright to 2011 ........ | ||||
| * | Merged revisions 86545 via svnmerge from | Benjamin Peterson | 2010-11-20 | 1 | -20/+5 |
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86545 | benjamin.peterson | 2010-11-19 22:31:07 -0600 (Fri, 19 Nov 2010) | 1 line new plan: functions that want 'tmp' can declare it ........ | ||||
| * | Merged revisions 86540 via svnmerge from | Benjamin Peterson | 2010-11-20 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86540 | benjamin.peterson | 2010-11-19 20:01:45 -0600 (Fri, 19 Nov 2010) | 1 line c89 declarations ........ | ||||
| * | Merged revisions 86538 via svnmerge from | Benjamin Peterson | 2010-11-20 | 1 | -50/+25 |
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86538 | benjamin.peterson | 2010-11-19 19:38:49 -0600 (Fri, 19 Nov 2010) | 1 line use %R format code; fixes invalid dereferencing #10391 ........ | ||||
| * | Merged revisions 85980 via svnmerge from | Hirokazu Yamamoto | 2010-10-30 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85980 | hirokazu.yamamoto | 2010-10-31 00:08:15 +0900 | 1 line Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. ........ |