summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Issue #23998: PyImport_ReInitLock() now checks for lock allocation errorChristian Heimes2015-04-191-1/+5
* merge 3.2 (closes #23165)Benjamin Peterson2015-01-041-3/+13
|\
| * add some overflow checks before multiplying (closes #23165)Benjamin Peterson2015-01-041-3/+13
* | merge 3.2Benjamin Peterson2015-01-011-1/+1
|\ \ | |/
| * update for copyright for 2015Benjamin Peterson2015-01-011-1/+1
| * Copyright year update, add version to licenses.v3.2.6rc1Georg Brandl2014-10-041-1/+1
| * Copyright update to 2013.Georg Brandl2013-03-231-1/+1
* | Issue #22518: Fixed integer overflow issues in "backslashreplace",v3.3.6rc1Serhiy Storchaka2014-10-041-2/+6
* | The PyCOND_TIMEDWAIT must use microseconds for the timeout argumentKristján Valur Jónsson2014-05-082-7/+7
* | Issue #20404: reject non-text encodings early in TextIOWrapper.Georg Brandl2014-03-021-21/+63
* | Issue #19619: Blacklist non-text codecs in method APISerhiy Storchaka2014-02-241-16/+122
* | bump Python-ast.cBenjamin Peterson2014-02-201-2/+2
* | don't put runtime values in array initializer for C89 compliance (closes #20588)Benjamin Peterson2014-02-111-2/+6
* | Issue #20437: Fixed 21 potential bugs when deleting objects references.Serhiy Storchaka2014-02-093-12/+6
* | Issue #2382: SyntaxError cursor "^" now is written at correct position in mostSerhiy Storchaka2014-01-211-2/+12
* | Issue #19036: Including locale.h should not depend on HAVE_LANGINFO_H.Stefan Krah2014-01-201-1/+2
* | update copyright yearBenjamin Peterson2014-01-011-1/+1
* | Issue #16404: Add checks for return value of PyLong_FromLong() inSerhiy Storchaka2013-12-171-0/+4
* | Fixed leak in sys.flags initialization.Serhiy Storchaka2013-12-171-0/+1
* | document that compile() can take bytes (closes #19910)Benjamin Peterson2013-12-071-1/+1
* | Issue #19638: Raise ValueError instead of crashing when converting billion ch...Mark Dickinson2013-11-261-12/+43
* | fileutils.c: use MAXPATHLEN instead of PATH_MAXVictor Stinner2013-11-151-6/+6
* | sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size ofVictor Stinner2013-11-151-1/+1
* | pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size ofVictor Stinner2013-11-151-2/+3
* | make string literal constBenjamin Peterson2013-10-311-1/+1
* | update commentBenjamin Peterson2013-10-301-3/+3
* | Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in theChristian Heimes2013-10-221-0/+4
* | Issue #18776: atexit callbacks now display their full traceback when they rai...Antoine Pitrou2013-10-131-0/+10
* | Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least...Antoine Pitrou2013-10-071-2/+2
* | Closes #15213: update comment for _PyOS_URandomGeorg Brandl2013-10-061-2/+3
* | [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 refle...Eric Snow2013-10-031-2613/+2611
* | 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
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-274-6/+5
* | #18839: document that sys.exit() will not accept a non-integer numeric value ...Ezio Melotti2013-08-261-1/+1
* | Issue #18756: Improve error reporting in os.urandom() when the failure is due...Antoine Pitrou2013-08-161-2/+6
* | 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
* | 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
* | 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
* | fix spacingBenjamin Peterson2013-07-211-1/+1
* | let's not return NULL from functions that should return intsBenjamin Peterson2013-07-211-2/+2