summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Collapse)AuthorAgeFilesLines
* bring Python into 2013Benjamin Peterson2013-01-011-1/+1
|
* Add sanity assertions in some import lock code (issue #15599).Antoine Pitrou2012-12-181-0/+2
|
* (Merge 3.2) Issue #16416: On Mac OS X, operating system data are now alwaysVictor Stinner2012-12-031-6/+54
|\ | | | | | | | | | | | | encoded/decoded to/from UTF-8/surrogateescape, instead of the locale encoding (which may be ASCII if no locale environment variable is set), to avoid inconsistencies with os.fsencode() and os.fsdecode() functions which are already using UTF-8/surrogateescape.
| * Issue #16416: On Mac OS X, operating system data are now alwaysVictor Stinner2012-12-031-6/+54
| | | | | | | | | | | | | | encoded/decoded to/from UTF-8/surrogateescape, instead of the locale encoding (which may be ASCII if no locale environment variable is set), to avoid inconsistencies with os.fsencode() and os.fsdecode() functions which are already using UTF-8/surrogateescape.
* | Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.hChristian Heimes2012-12-021-0/+3
|\ \ | |/
| * Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.hChristian Heimes2012-12-021-0/+3
| |
* | Issue #16546: make ast.YieldFrom argument mandatory.Mark Dickinson2012-11-254-23/+25
| |
* | #16306: merge with 3.2.Ezio Melotti2012-11-231-1/+1
|\ \ | |/
| * #16306: report only the first unknown option and add more tests. Patch by ↵Ezio Melotti2012-11-231-1/+1
| | | | | | | | Serhiy Storchaka.
| * Remove unused variabile "plain" in builtin_exec.Ezio Melotti2012-11-211-2/+0
| |
* | - Issue #16514: Fix regression causing a traceback when sys.path[0] is NoneBarry Warsaw2012-11-201-63/+67
| | | | | | | | (actually, any non-string or non-bytes type).
* | #16306: merge with 3.2.Ezio Melotti2012-11-181-5/+5
|\ \ | |/
| * #16306: Fix multiple error messages when unknown command line parameters ↵Ezio Melotti2012-11-181-5/+5
| | | | | | | | where passed to the interpreter. Patch by Hieu Nguyen.
* | recompile importlib.hBenjamin Peterson2012-11-121-1543/+1543
| |
* | Issue #15835: Define PATH_MAX on HP-UX.Stefan Krah2012-11-121-0/+1
| |
* | Issue #15001: fix segfault on "del sys.module['__main__']"Hynek Schlawack2012-11-071-6/+6
|\ \ | |/ | | | | Patch by Victor Stinner.
| * Issue #15001: fix segfault on "del sys.module['__main__']"Hynek Schlawack2012-11-071-6/+6
| | | | | | | | Patch by Victor Stinner.
| * #5057: the peepholer no longer optimizes subscription on unicode literals ↵Ezio Melotti2012-11-041-18/+7
| | | | | | | | (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds.
* | Issue #5765: Apply a hard recursion limit in the compilerNick Coghlan2012-11-042-29/+73
| | | | | | | | | | | | | | Previously, excessive nesting in expressions would blow the stack and segfault the interpreter. Now, a hard limit based on the configured recursion limit and a hardcoded scaling factor is applied.
* | #16336: merge with 3.2.Ezio Melotti2012-11-031-4/+4
|\ \ | |/
| * #16336: fix input checking in the surrogatepass error handler. Patch by ↵Ezio Melotti2012-11-031-4/+4
| | | | | | | | Serhiy Storchaka.
* | Issue #16218: Support non ascii characters in python launcher.Andrew Svetlov2012-11-011-2/+7
| | | | | | | | Patch by Serhiy Storchaka.
* | check return value of _PyUnicode_AsStringBenjamin Peterson2012-10-311-2/+6
| |
* | merge with 3.2Philip Jenvey2012-10-271-3/+4
|\ \ | |/
| * bounds check for bad data (thanks amaury)Philip Jenvey2012-10-271-3/+4
| |
| * Fix compilation on WindowsNick Coghlan2012-10-201-1/+1
| |
| * Issue #6074: Forward port Windows read-only source file fix from 2.7Nick Coghlan2012-10-191-0/+6
| |
* | Issue #6074: Apply an appropriate fix for importlib based importsNick Coghlan2012-10-191-1884/+1885
| |
* | Issue #15833: don't raise an exception if importlib can't write byte-compiledTrent Nelson2012-10-161-1839/+1845
| | | | | | | | | | | | files. This fixes a regression introduced by 3.3. Patch by Charles-François Natali.
* | Closes issue #15111: Calling __import__ with a module specified inBrett Cannon2012-10-101-467/+471
| | | | | | | | | | fromlist which causes its own ImportError (e.g. the module tries to import a non-existent module) should have that exception propagate.
* | Add some comments.Brett Cannon2012-09-281-3476/+3475
| |
* | don't depend on __debug__ because it's baked in at freeze time (issue #16046)Benjamin Peterson2012-09-251-4221/+4230
| |
* | Issue #15144: Fix possible integer overflow when handling pointers as ↵Antoine Pitrou2012-09-201-5/+3
| | | | | | | | | | | | integer values, by using Py_uintptr_t instead of size_t. Patch by Serhiy Storchaka.
* | Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to ↵Christian Heimes2012-09-121-1/+3
|\ \ | |/ | | | | decref 'k' in too many error cases.
| * Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to ↵Christian Heimes2012-09-121-1/+3
| | | | | | | | decref 'k' in too many error cases.
* | Partly revert ad3824a90261 and add comment about reference ownershipChristian Heimes2012-09-121-2/+1
|\ \ | |/
| * Partly revert ad3824a90261 and add comment about reference ownershipChristian Heimes2012-09-121-2/+1
| |
* | Fix null pointer dereferencing in structmember.c PyMember_SetOne() for ↵Christian Heimes2012-09-111-5/+1
|\ \ | |/ | | | | T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815
| * Fix null pointer dereferencing in structmember.c PyMember_SetOne() for ↵Christian Heimes2012-09-111-5/+1
| | | | | | | | T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815
* | Issue #15895: my analysis was slightly off. The FILE pointer is only leaked ↵Christian Heimes2012-09-111-8/+6
| | | | | | | | when set_main_loader() fails for a pyc file with closeit=0. In the success case run_pyc_file() does its own cleanup of the fp. I've changed the code to use another FILE ptr for pyc files and moved the fclose() to PyRun_SimpleFileExFlags() to make it more obvious what's happening.
* | Issue #15895: Fix FILE pointer leak in PyRun_SimpleFileExFlags() when ↵Christian Heimes2012-09-111-1/+5
| | | | | | | | filename points to a pyc/pyo file and closeit is false.
* | Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s ↵Christian Heimes2012-09-101-0/+1
|\ \ | |/ | | | | going out of scope leaks the storage it points to.
| * Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s ↵Christian Heimes2012-09-101-0/+1
| | | | | | | | going out of scope leaks the storage it points to.
* | Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-101-0/+1
|\ \ | |/
| * Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-101-0/+1
| |
* | Closed reference leak of variable 'k' in function ste_new which wasn't ↵Christian Heimes2012-09-101-1/+2
|\ \ | |/ | | | | decrefed in error cases
| * Closed reference leak of variable 'k' in function ste_new which wasn't ↵Christian Heimes2012-09-101-1/+2
| | | | | | | | decrefed in error cases
* | Issue #15340: Fix importing the random module when /dev/urandom cannot be ↵Antoine Pitrou2012-09-071-1/+2
|\ \ | |/ | | | | | | | | opened. This was a regression caused by the hash randomization patch.
| * Issue #15340: Fix importing the random module when /dev/urandom cannot be ↵Antoine Pitrou2012-09-071-1/+2
| | | | | | | | | | | | opened. This was a regression caused by the hash randomization patch.
* | After the jump in line 1051 unicode_tmp is NULL. Found by Coverity.Stefan Krah2012-09-061-1/+1
| |