| Commit message (Expand) | Author | Age | Files | Lines |
* | update copyright year | Benjamin Peterson | 2014-01-01 | 1 | -1/+1 |
|
|
* | Issue #16404: Add checks for return value of PyLong_FromLong() in | Serhiy Storchaka | 2013-12-17 | 1 | -0/+4 |
|
|
* | Fixed leak in sys.flags initialization. | Serhiy Storchaka | 2013-12-17 | 1 | -0/+1 |
|
|
* | document that compile() can take bytes (closes #19910) | Benjamin Peterson | 2013-12-07 | 1 | -1/+1 |
|
|
* | Issue #19638: Raise ValueError instead of crashing when converting billion ch... | Mark Dickinson | 2013-11-26 | 1 | -12/+43 |
|
|
* | fileutils.c: use MAXPATHLEN instead of PATH_MAX | Victor Stinner | 2013-11-15 | 1 | -6/+6 |
|
|
* | sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size of | Victor Stinner | 2013-11-15 | 1 | -1/+1 |
|
|
* | pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size of | Victor Stinner | 2013-11-15 | 1 | -2/+3 |
|
|
* | make string literal const | Benjamin Peterson | 2013-10-31 | 1 | -1/+1 |
|
|
* | update comment | Benjamin Peterson | 2013-10-30 | 1 | -3/+3 |
|
|
* | Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the | Christian Heimes | 2013-10-22 | 1 | -0/+4 |
|
|
* | Issue #18776: atexit callbacks now display their full traceback when they rai... | Antoine Pitrou | 2013-10-13 | 1 | -0/+10 |
|
|
* | Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least... | Antoine Pitrou | 2013-10-07 | 1 | -2/+2 |
|
|
* | Closes #15213: update comment for _PyOS_URandom | Georg Brandl | 2013-10-06 | 1 | -2/+3 |
|
|
* | [issue19152] Revert 832579dbafd6. | Eric Snow | 2013-10-03 | 1 | -210/+192 |
|
|
* | [issue19152] Add ExtensionFileLoader.get_filename(). | Eric Snow | 2013-10-03 | 1 | -192/+210 |
|
|
* | [issue19151] Fix docstring and use of _get_suppported_file_loaders() to refle... | Eric Snow | 2013-10-03 | 1 | -2613/+2611 |
|
|
* | don't scale compiler stack frames if the recursion limit is huge (closes #19098) | Benjamin Peterson | 2013-09-27 | 1 | -2/+6 |
|
|
* | Issue #16826: Revert fix while Windows issues are being worked out. | Meador Inge | 2013-09-04 | 1 | -4206/+4201 |
|
|
* | Issue #16826: Don't check for PYTHONCASEOK when using -E. | Meador Inge | 2013-09-03 | 1 | -4201/+4206 |
|
|
* | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 4 | -6/+5 |
|
|
* | #18839: document that sys.exit() will not accept a non-integer numeric value ... | Ezio Melotti | 2013-08-26 | 1 | -1/+1 |
|
|
* | Issue #18756: Improve error reporting in os.urandom() when the failure is due... | Antoine Pitrou | 2013-08-16 | 1 | -2/+6 |
|
|
* | 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-26 | 1 | -2/+9 |
|
|
* | Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). | Christian Heimes | 2013-07-26 | 1 | -3/+7 |
|
|
* | Parser/asdl_c.py: use Py_CLEAR() | Victor Stinner | 2013-07-26 | 1 | -268/+134 |
|
|
* | According to the PEP 7, C code must "use 4-space indents" | Victor Stinner | 2013-07-26 | 1 | -5824/+5779 |
|
|
* | 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 |
|
|
* | return NULL here | Benjamin Peterson | 2013-07-23 | 1 | -1/+2 |
|
|
* | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], | Christian Heimes | 2013-07-22 | 1 | -3/+4 |
|
|
* | 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 |
|
|
* | Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ... | Christian Heimes | 2013-07-20 | 1 | -0/+5 |
|
|
* | Check return value of fstat() in _PyImport_GetDynLoadFunc() | Christian Heimes | 2013-07-20 | 1 | -1/+3 |
|
|
* | Add missing check of PyDict_SetItem()'s return value in _PyImport_FindExtensi... | Christian Heimes | 2013-07-20 | 1 | -1/+4 |
|
|
* | Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() | Christian Heimes | 2013-07-20 | 1 | -1/+3 |
|
|
* | Issue #17872: Fix a segfault in marshal.load() when input stream returns | Serhiy Storchaka | 2013-07-11 | 1 | -15/+20 |
|
|
* | 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 |
|
|
* | #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 |
|
|
* | Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now the | Christian Heimes | 2013-07-01 | 1 | -2/+2 |
|
|
* | Issue #18137: Detect integer overflow on precision in float.__format__() and | Victor Stinner | 2013-06-23 | 1 | -2/+14 |
|
|
* | 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 |
|
|