summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* fix misleading indentation (closes #28139)Benjamin Peterson2016-09-141-1/+1
* Issue #26020: Fix evaluation order for set literalsRaymond Hettinger2016-09-081-2/+4
* Issue #15578: Correctly incref the parent module while importing.Eric Snow2016-09-081-0/+2
* Spelling and grammar fixes in code comments and documentationMartin Panter2016-07-281-1/+1
* make too many nested blocks be a SyntaxError instead of a SystemError (closes...Benjamin Peterson2016-07-151-1/+1
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* reduce marshal stack size in debug mode on windows (closes #27019)Benjamin Peterson2016-07-071-0/+5
* Issue #23908: os functions, open() and the io.FileIO constructor now rejectSerhiy Storchaka2016-07-011-1/+18
* Issue #27301: Fixed incorrect return code for error in compile.c.Serhiy Storchaka2016-06-151-1/+1
* Fix typo in commentMartin Panter2016-06-101-1/+1
* Fix typo in code commentMartin Panter2016-06-041-1/+1
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-262-2/+2
* Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-42/+68
* Issue #26874: Simplify the divmod docstring.Zachary Ware2016-04-281-1/+1
* Issue #26874: Make divmod docstring and full doc matchZachary Ware2016-04-281-1/+1
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-172-2/+2
* Issue #4806: Avoid masking TypeError when *-unpacking a generatorMartin Panter2016-01-311-2/+4
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-2/+2
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-103-4/+4
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-064-5/+5
* Issue #26476: Fixed compilation error when use PyErr_BadInternalCall() in C++.Serhiy Storchaka2016-03-031-1/+1
* Issue #22836: Keep exception reports sensible despite errorsMartin Panter2016-02-282-3/+15
* Issue #25698: Importing module if the stack is too deep no longer replacesSerhiy Storchaka2016-02-101-7/+25
* Issue #26198: Fixed error messages for some argument parsing errors.Serhiy Storchaka2016-02-071-12/+21
* code_richcompare() now uses the constants typesVictor Stinner2016-01-221-47/+6
* Issue24733 - Remove unreachable code in traceback.cSenthil Kumaran2016-01-051-4/+0
* 2016 will be another year of writing copyrighted codeBenjamin Peterson2016-01-011-1/+1
* Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-8/+5
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-243-7/+4
* Issue #25678: Copy buffer objects to null-terminated strings.Serhiy Storchaka2015-11-201-5/+16
* Issue #25003: os.urandom() doesn't use getentropy() on Solaris becauseVictor Stinner2015-10-011-4/+8
* 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