Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15893: Remove dead code | Victor Stinner | 2013-07-27 | 1 | -5/+0 |
| | |||||
* | Issue #15893: frozenmain.c now handles PyMem_Malloc() failure | Victor Stinner | 2013-07-27 | 1 | -2/+9 |
| | |||||
* | Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). | Christian Heimes | 2013-07-27 | 1 | -3/+7 |
| | |||||
* | Parser/asdl_c.py: use Py_CLEAR() | Victor Stinner | 2013-07-27 | 1 | -268/+134 |
| | |||||
* | According to the PEP 7, C code must "use 4-space indents" | Victor Stinner | 2013-07-27 | 1 | -5824/+5779 |
| | | | | Replace 8 spaces with 4. | ||||
* | Issue #18560: Fix potential NULL pointer dereference in sum() | Christian Heimes | 2013-07-26 | 1 | -0/+5 |
| | |||||
* | Fix potential NULL pointer dereferencing in ast module | Christian Heimes | 2013-07-24 | 1 | -1/+1 |
| | | | | CID 719690 | ||||
* | return NULL here | Benjamin Peterson | 2013-07-22 | 1 | -1/+2 |
| | |||||
* | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], | Christian Heimes | 2013-07-22 | 1 | -3/+4 |
| | | | | prefix and exec_prefix if the operation system does not obey MAXPATHLEN. | ||||
* | fix spacing | Benjamin Peterson | 2013-07-21 | 1 | -1/+1 |
| | |||||
* | let's not return NULL from functions that should return ints | Benjamin Peterson | 2013-07-21 | 1 | -2/+2 |
| | |||||
* | Check return value of lseek() in _Py_DisplaySourceLine(). | Christian Heimes | 2013-07-21 | 1 | -1/+7 |
| | | | | | Also use portable SEEK_SET instead of 0. CID 1040639 | ||||
* | Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ↵ | Christian Heimes | 2013-07-21 | 1 | -0/+5 |
| | | | | | | for error CID 486768 | ||||
* | Check return value of fstat() in _PyImport_GetDynLoadFunc() | Christian Heimes | 2013-07-20 | 1 | -1/+3 |
| | | | | CID 486250 | ||||
* | Add missing check of PyDict_SetItem()'s return value in ↵ | Christian Heimes | 2013-07-20 | 1 | -1/+4 |
| | | | | | | _PyImport_FindExtensionObject() CID 486649 | ||||
* | Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() | Christian Heimes | 2013-07-20 | 1 | -1/+3 |
| | | | | CID 486647 | ||||
* | Issue #17872: Fix a segfault in marshal.load() when input stream returns | Serhiy Storchaka | 2013-07-11 | 1 | -15/+20 |
| | | | | more bytes than requested. | ||||
* | Fix reference leaks introduced by the patch for issue #5308. | Serhiy Storchaka | 2013-07-11 | 1 | -12/+11 |
| | |||||
* | Issue #18426: improve exception message. Courtesy of Amaury | Christian Heimes | 2013-07-11 | 1 | -1/+5 |
| | |||||
* | Issue #18426: Fix NULL pointer dereference in C extension import when | Christian Heimes | 2013-07-11 | 1 | -0/+2 |
| | | | | PyModule_GetDef() returns an error. | ||||
* | #18424: PEP8ify the tense of the sum docstring. | R David Murray | 2013-07-10 | 1 | -2/+2 |
| | |||||
* | Issue #18351: Fix various issues with | Brett Cannon | 2013-07-06 | 1 | -3369/+3367 |
| | | | | | | | | | importlib._bootstrap._get_sourcefile(). Thanks to its only use by the C API, it was never properly tested until now. Thanks to Neal Norwitz for discovering the bug and Madison May for the patch. | ||||
* | Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now the | Christian Heimes | 2013-07-01 | 1 | -2/+2 |
| | | | | | | tstate is first removed from TLS and then deallocated. CID 1019639 (#1 of 1): Use after free (USE_AFTER_FREE) use_after_free: Using freed pointer tstate. | ||||
* | Issue #18137: Detect integer overflow on precision in float.__format__() and | Victor Stinner | 2013-06-23 | 1 | -2/+14 |
| | | | | complex.__format__(). | ||||
* | Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn. | Antoine Pitrou | 2013-06-18 | 1 | -0/+3 |
| | |||||
* | Fix a misnaming of a method and an argument | Brett Cannon | 2013-06-16 | 1 | -1071/+1071 |
| | |||||
* | Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows(). | Richard Oudkerk | 2013-06-10 | 1 | -2/+3 |
| | |||||
* | move definition to top of block | Benjamin Peterson | 2013-05-16 | 1 | -1/+2 |
| | |||||
* | complain about "global __class__" in a class body (closes #17983) | Benjamin Peterson | 2013-05-15 | 1 | -0/+6 |
| | |||||
* | when arguments are cells clear the locals slot (backport of #17927) | Benjamin Peterson | 2013-05-14 | 1 | -2/+6 |
| | |||||
* | Fix crash caused by 8c1385205a35 | Antoine Pitrou | 2013-05-05 | 1 | -6/+8 |
| | | | | (thanks Arfrever for reporting). | ||||
* | Issue #17408: Avoid using an obsolete instance of the copyreg module when ↵ | Antoine Pitrou | 2013-05-04 | 1 | -3/+1 |
| | | | | the interpreter is shutdown and then started again. | ||||
* | ignore errors when trying to fetch sys.stdin.encoding (closes #17863) | Benjamin Peterson | 2013-04-29 | 1 | -9/+8 |
| | |||||
* | raise an ImportError (rather than fatal) when __import__ is not found in ↵ | Benjamin Peterson | 2013-04-29 | 1 | -1/+2 |
| | | | | __builtins__ (closes #17867) | ||||
* | #17413: make sure settrace funcs get passed exception instances for 'value'. | R David Murray | 2013-04-19 | 1 | -0/+1 |
| | | | | Patch by Ingrid Cheung and Brendan McLoughlin. | ||||
* | Fix indentation. | Ezio Melotti | 2013-04-19 | 1 | -6/+6 |
| | |||||
* | Revert a premature patch for issue #14010 (changeset aaaf36026511). | Serhiy Storchaka | 2013-04-06 | 1 | -21/+9 |
| | |||||
* | Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). | Antoine Pitrou | 2013-04-06 | 1 | -2/+5 |
| | |||||
* | Issue #14010: Fix a crash when iterating or deleting deeply nested filters | Serhiy Storchaka | 2013-04-06 | 1 | -9/+21 |
| | | | | (builting and in itertools module, i.e. map(), itertools.chain(), etc). | ||||
* | Issue #17619: Make input() check for Ctrl-C correctly on Windows. | Richard Oudkerk | 2013-04-03 | 1 | -0/+1 |
| | |||||
* | Issue #17357: Add missing verbosity messages when running under | Brett Cannon | 2013-04-01 | 1 | -4268/+4281 |
| | | | | -v/-vv that were lost in the transition to importlib. | ||||
* | Fixes issue4653 - Correctly specify the buffer size to FormatMessageW and | Gregory P. Smith | 2013-03-23 | 1 | -1/+1 |
| | | | | correctly check for errors on two CreateFileMapping calls. | ||||
* | Issue #15038 : Fixing the condition broadcast and docs. | Kristján Valur Jónsson | 2013-03-19 | 1 | -6/+6 |
| | |||||
* | Rebuild importlib.h after the changes introduced in 0f65bf6063ca. | Ezio Melotti | 2013-02-20 | 1 | -1092/+1089 |
| | |||||
* | #17178: merge with 3.2. | Ezio Melotti | 2013-02-15 | 1 | -2/+4 |
|\ | |||||
| * | #17178: update any()/all() docstrings to document their behavior with empty ↵ | Ezio Melotti | 2013-02-15 | 1 | -2/+4 |
| | | | | | | | | iterables. Patch by Ankur Ankan. | ||||
* | | Issue #5308: Raise ValueError when marshalling too large object (a sequence | Serhiy Storchaka | 2013-02-13 | 1 | -59/+59 |
|\ \ | |/ | | | | | with size >= 2**31), instead of producing illegal marshal data. | ||||
| * | Issue #5308: Raise ValueError when marshalling too large object (a sequence | Serhiy Storchaka | 2013-02-13 | 1 | -59/+59 |
| | | | | | | | | with size >= 2**31), instead of producing illegal marshal data. | ||||
* | | Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError | Serhiy Storchaka | 2013-02-10 | 1 | -7/+11 |
|\ \ | |/ | | | | | and a full traceback including line number. | ||||
| * | Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError | Serhiy Storchaka | 2013-02-10 | 1 | -7/+11 |
| | | | | | | | | and a full traceback including line number. |