summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Collapse)AuthorAgeFilesLines
* [issue19152] Revert 832579dbafd6.Eric Snow2013-10-031-210/+192
|
* [issue19152] Add ExtensionFileLoader.get_filename().Eric Snow2013-10-031-192/+210
|
* [issue19151] Fix docstring and use of _get_suppported_file_loaders() to ↵Eric Snow2013-10-031-2613/+2611
| | | | reflect 2-tuples.
* don't scale compiler stack frames if the recursion limit is huge (closes #19098)Benjamin Peterson2013-09-271-2/+6
|
* Issue #16826: Revert fix while Windows issues are being worked out.Meador Inge2013-09-041-4206/+4201
|
* Issue #16826: Don't check for PYTHONCASEOK when using -E.Meador Inge2013-09-031-4201/+4206
| | | | | This commit fixes a regression that sneaked into Python 3.3 where importlib was not respecting -E when checking for the PYTHONCASEOK environment variable.
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-274-6/+5
| | | | error messages and comments.
* #18839: document that sys.exit() will not accept a non-integer numeric value ↵Ezio Melotti2013-08-261-1/+1
| | | | as exit status.
* Issue #18756: Improve error reporting in os.urandom() when the failure is ↵Antoine Pitrou2013-08-161-2/+6
| | | | due to something else than /dev/urandom not existing.
* Issue #15893: Remove dead codeVictor Stinner2013-07-271-5/+0
|
* Issue #15893: frozenmain.c now handles PyMem_Malloc() failureVictor Stinner2013-07-261-2/+9
|
* Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().Christian Heimes2013-07-261-3/+7
|
* Parser/asdl_c.py: use Py_CLEAR()Victor Stinner2013-07-261-268/+134
|
* According to the PEP 7, C code must "use 4-space indents"Victor Stinner2013-07-261-5824/+5779
| | | | Replace 8 spaces with 4.
* Issue #18560: Fix potential NULL pointer dereference in sum()Christian Heimes2013-07-261-0/+5
|
* Fix potential NULL pointer dereferencing in ast moduleChristian Heimes2013-07-241-1/+1
| | | | CID 719690
* return NULL hereBenjamin Peterson2013-07-231-1/+2
|
* Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-3/+4
| | | | prefix and exec_prefix if the operation system does not obey MAXPATHLEN.
* fix spacingBenjamin Peterson2013-07-211-1/+1
|
* let's not return NULL from functions that should return intsBenjamin Peterson2013-07-211-2/+2
|
* Check return value of lseek() in _Py_DisplaySourceLine().Christian Heimes2013-07-211-1/+7
| | | | | Also use portable SEEK_SET instead of 0. CID 1040639
* Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ↵Christian Heimes2013-07-201-0/+5
| | | | | | for error CID 486768
* Check return value of fstat() in _PyImport_GetDynLoadFunc()Christian Heimes2013-07-201-1/+3
| | | | CID 486250
* Add missing check of PyDict_SetItem()'s return value in ↵Christian Heimes2013-07-201-1/+4
| | | | | | _PyImport_FindExtensionObject() CID 486649
* Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx()Christian Heimes2013-07-201-1/+3
| | | | CID 486647
* Issue #17872: Fix a segfault in marshal.load() when input stream returnsSerhiy Storchaka2013-07-111-15/+20
| | | | more bytes than requested.
* Fix reference leaks introduced by the patch for issue #5308.Serhiy Storchaka2013-07-111-12/+11
|
* Issue #18426: improve exception message. Courtesy of AmauryChristian Heimes2013-07-111-1/+5
|
* Issue #18426: Fix NULL pointer dereference in C extension import whenChristian Heimes2013-07-111-0/+2
| | | | PyModule_GetDef() returns an error.
* #18424: PEP8ify the tense of the sum docstring.R David Murray2013-07-101-2/+2
|
* Issue #18351: Fix various issues withBrett Cannon2013-07-061-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 theChristian Heimes2013-07-011-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__() andVictor Stinner2013-06-231-2/+14
| | | | complex.__format__().
* Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.Antoine Pitrou2013-06-181-0/+3
|
* Fix a misnaming of a method and an argumentBrett Cannon2013-06-161-1071/+1071
|
* Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows().Richard Oudkerk2013-06-101-2/+3
|
* move definition to top of blockBenjamin Peterson2013-05-171-1/+2
|
* complain about "global __class__" in a class body (closes #17983)Benjamin Peterson2013-05-151-0/+6
|
* when arguments are cells clear the locals slot (backport of #17927)Benjamin Peterson2013-05-151-2/+6
|
* Fix crash caused by 8c1385205a35Antoine Pitrou2013-05-051-6/+8
| | | | (thanks Arfrever for reporting).
* Issue #17408: Avoid using an obsolete instance of the copyreg module when ↵Antoine Pitrou2013-05-041-3/+1
| | | | the interpreter is shutdown and then started again.
* ignore errors when trying to fetch sys.stdin.encoding (closes #17863)Benjamin Peterson2013-04-291-9/+8
|
* raise an ImportError (rather than fatal) when __import__ is not found in ↵Benjamin Peterson2013-04-291-1/+2
| | | | __builtins__ (closes #17867)
* #17413: make sure settrace funcs get passed exception instances for 'value'.R David Murray2013-04-191-0/+1
| | | | Patch by Ingrid Cheung and Brendan McLoughlin.
* Fix indentation.Ezio Melotti2013-04-191-6/+6
|
* Revert a premature patch for issue #14010 (changeset aaaf36026511).Serhiy Storchaka2013-04-061-21/+9
|
* Issue #17645: convert an assert() into a proper exception in _Py_Mangle().Antoine Pitrou2013-04-061-2/+5
|
* Issue #14010: Fix a crash when iterating or deleting deeply nested filtersSerhiy Storchaka2013-04-061-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 Oudkerk2013-04-031-0/+1
|
* Issue #17357: Add missing verbosity messages when running underBrett Cannon2013-04-011-4268/+4281
| | | | -v/-vv that were lost in the transition to importlib.