summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* remove tabs from ceval.c (closes #24895)Benjamin Peterson2015-08-201-173/+173
* check return value of PyString_FromStringAndSize for NULL (closes #24734)Benjamin Peterson2015-07-271-1/+4
* Added the const qualifier for char* argument of Py_EnterRecursiveCall().Serhiy Storchaka2015-06-211-1/+1
* Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-101-2/+2
* sync opcode prediction code with python 3Benjamin Peterson2015-06-011-10/+4
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-311-27/+182
* Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-22/+21
* backport computed gotos (#4753)Benjamin Peterson2015-05-283-230/+854
* Issue #24102: Fixed exception type checking in standard error handlers.Serhiy Storchaka2015-05-181-8/+9
* Issue #23998: PyImport_ReInitLock() now checks for lock allocation errorChristian Heimes2015-04-191-1/+5
* Issue #23115: os.urandom() now releases the GIL when the getentropy() is usedVictor Stinner2015-03-301-6/+14
* Issue #23781: Add private helper function _PyErr_ReplaceException() thatSerhiy Storchaka2015-03-301-0/+20
* Issue #23458: On POSIX, the file descriptor kept open by os.urandom() is nowVictor Stinner2015-02-241-0/+9
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-3/+5
* Issue #23115: Fixed compilation on OpenBSD (Py_MIN is not defined in 2.7).Serhiy Storchaka2015-02-161-1/+1
* avoid reading unallocated memory when argc == 0 (closes #22633)Benjamin Peterson2015-02-141-1/+2
* update for copyright for 2015Benjamin Peterson2015-01-011-1/+1
* use getentropy when available (backport of 75ede5bec8db) (closes #23115)Benjamin Peterson2014-12-261-6/+35
* pop the loop block even for infinite while loops (closes #23048)Benjamin Peterson2014-12-131-3/+2
* Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64,Victor Stinner2014-12-121-3/+5
* Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-013-3/+3
* Issue #21963: backout issue #1856 patch (avoid crashes and lockups whenAntoine Pitrou2014-11-213-22/+3
* Issue #22453: Fexed reference leaks when format error messages in ceval.c.Serhiy Storchaka2014-11-182-10/+22
* Issue #22193: Fixed integer overflow error in sys.getsizeof().Serhiy Storchaka2014-11-151-4/+9
* Fixed compilation error introduced in 3f7519f633ed (issue #22518).Serhiy Storchaka2014-10-041-2/+1
* Issue #22518: Fixed integer overflow issues in "backslashreplace" andSerhiy Storchaka2014-10-041-2/+12
* Fixed reference leak in the "backslashreplace" error handler.Serhiy Storchaka2014-09-231-1/+3
* PEP 466: backport persistent urandom fd (closes #21305)Benjamin Peterson2014-08-282-16/+79
* Issue #22193: Added private function _PySys_GetSizeOf() needed to implementSerhiy Storchaka2014-08-141-33/+42
* remove castsBenjamin Peterson2014-08-101-4/+4
* restore runtime exec test (#21591)Benjamin Peterson2014-08-101-0/+9
* Issue #21591: Handle exec backwards compatibility in the AST builder.Dirkjan Ochtman2014-07-292-9/+12
* correct ref counting of default_action (closes #22017)Benjamin Peterson2014-07-201-0/+1
* add missing 'because' (closes #22008)Benjamin Peterson2014-07-181-1/+1
* revert tstate_delete_common, since it's pretty much wrongBenjamin Peterson2014-06-171-8/+1
* avoid a deadlock with the interpreter head lock and the GIL during finalizationBenjamin Peterson2014-06-171-1/+8
* check if the thread is finalizing after retaking the GILBenjamin Peterson2014-06-171-0/+7
* avoid crashes and lockups from daemon threads during interpreter shutdown (#1...Benjamin Peterson2014-06-173-3/+16
* Issue #19362: Tweek len() doc and docstring to expand the indicated range ofTerry Jan Reedy2014-06-161-1/+1
* Issue #19656: Running Python with the -3 option now also warns aboutSerhiy Storchaka2014-06-011-5/+17
* Issue #21523: Fix over-pessimistic computation of the stack effect of some op...Antoine Pitrou2014-05-231-2/+6
* Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-092-4/+2
* fix error checkBenjamin Peterson2014-01-161-1/+1
* update copyright yearBenjamin Peterson2014-01-011-1/+1
* Issue #16404: Add checks for return value of PyInt_FromLong() inSerhiy Storchaka2013-12-171-0/+4
* Fixed leak in sys.flags initialization.Serhiy Storchaka2013-12-171-0/+1
* Issue #19638: Raise ValueError instead of crashing when converting billion ch...Mark Dickinson2013-11-261-17/+48
* Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in theChristian Heimes2013-10-221-0/+5
* Closes #15213: update comment for _PyOS_URandomGeorg Brandl2013-10-061-2/+3
* #18839: document that sys.exit() will not accept a non-integer numeric value ...Ezio Melotti2013-08-261-1/+1