4085 Commits (b626643734dfd80780a1d301d4a96e57052aa262)

Author SHA1 Message Date
Benjamin Peterson 75e3630c60 2016 will be another year of writing copyrighted code 10 years ago
Yury Selivanov 614bfcc953 Issue 24366: Indent code (thanks to li4ick for reporting). 11 years ago
Benjamin Peterson deff2b76ec be more robust against the filters list changing under us (closes #24096) 11 years ago
Christian Heimes 418fd74f87 Issue #23998: PyImport_ReInitLock() now checks for lock allocation error 11 years ago
Benjamin Peterson f18bf6fd2d add some overflow checks before multiplying (closes #23165) 11 years ago
Benjamin Peterson 47e782a67a update for copyright for 2015 11 years ago
Georg Brandl edc3cbaaba Copyright year update, add version to licenses. 12 years ago
Serhiy Storchaka 4b1681832b Issue #22518: Fixed integer overflow issues in "backslashreplace", 12 years ago
Kristján Valur Jónsson ddf343855d The PyCOND_TIMEDWAIT must use microseconds for the timeout argument 12 years ago
Georg Brandl 2fc8f773e1 Issue #20404: reject non-text encodings early in TextIOWrapper. 12 years ago
Serhiy Storchaka 94ee389308 Issue #19619: Blacklist non-text codecs in method API 12 years ago
Benjamin Peterson 665a2bcdf8 bump Python-ast.c 12 years ago
Benjamin Peterson c2f665e721 don't put runtime values in array initializer for C89 compliance (closes #20588) 12 years ago
Serhiy Storchaka 505ff755d7 Issue #20437: Fixed 21 potential bugs when deleting objects references. 12 years ago
Serhiy Storchaka 65fd0592fb Issue #2382: SyntaxError cursor "^" now is written at correct position in most 12 years ago
Stefan Krah 6c01e38677 Issue #19036: Including locale.h should not depend on HAVE_LANGINFO_H. 12 years ago
Benjamin Peterson fa10ae0978 update copyright year 12 years ago
Serhiy Storchaka 48d761e2b4 Issue #16404: Add checks for return value of PyLong_FromLong() in 12 years ago
Serhiy Storchaka 87a854dc73 Fixed leak in sys.flags initialization. 12 years ago
Benjamin Peterson 933142a8f2 document that compile() can take bytes (closes #19910) 12 years ago
Mark Dickinson f45bbb6211 Issue #19638: Raise ValueError instead of crashing when converting billion character strings to float. 12 years ago
Victor Stinner b11d6cb711 fileutils.c: use MAXPATHLEN instead of PATH_MAX 12 years ago
Victor Stinner 2384714819 sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size of 12 years ago
Victor Stinner 2f5bbc6a12 pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size of 12 years ago
Benjamin Peterson 7f69dcac16 make string literal const 12 years ago
Benjamin Peterson 8f169489c4 update comment 12 years ago
Christian Heimes 49e61806f5 Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the 13 years ago
Antoine Pitrou 24201d497c Issue #18776: atexit callbacks now display their full traceback when they raise an exception. 13 years ago
Antoine Pitrou 59c900d3bf Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions. 13 years ago
Georg Brandl c6a2c9b466 Closes #15213: update comment for _PyOS_URandom 13 years ago
Eric Snow 5c4b4c530f [issue19152] Revert 832579dbafd6. 13 years ago
Eric Snow af8566c847 [issue19152] Add ExtensionFileLoader.get_filename(). 13 years ago
Eric Snow efbc475278 [issue19151] Fix docstring and use of _get_suppported_file_loaders() to reflect 2-tuples. 13 years ago
Benjamin Peterson 305e5aac85 don't scale compiler stack frames if the recursion limit is huge (closes #19098) 13 years ago
Meador Inge c9e1dcdd53 Issue #16826: Revert fix while Windows issues are being worked out. 13 years ago
Meador Inge d151da9ef7 Issue #16826: Don't check for PYTHONCASEOK when using -E. 13 years ago
Serhiy Storchaka 9594942716 Issue #18783: Removed existing mentions of Python long type in docstrings, 13 years ago
Ezio Melotti 4af4d273bd #18839: document that sys.exit() will not accept a non-integer numeric value as exit status. 13 years ago
Antoine Pitrou ec34ab5010 Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. 13 years ago
Victor Stinner da2cbb4fc8 Issue #15893: Remove dead code 13 years ago
Victor Stinner 36577e4e8c Issue #15893: frozenmain.c now handles PyMem_Malloc() failure 13 years ago
Christian Heimes 70c94e7896 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). 13 years ago
Victor Stinner 1acc129d48 Parser/asdl_c.py: use Py_CLEAR() 13 years ago
Victor Stinner ce72e1ce6c According to the PEP 7, C code must "use 4-space indents" 13 years ago
Christian Heimes 704e2d374f Issue #18560: Fix potential NULL pointer dereference in sum() 13 years ago
Christian Heimes 72f562f719 Fix potential NULL pointer dereferencing in ast module 13 years ago
Benjamin Peterson 7d28b6b379 return NULL here 13 years ago
Christian Heimes 60a6067709 Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], 13 years ago
Benjamin Peterson 0f9b7d32c7 fix spacing 13 years ago
Benjamin Peterson 04b01dc8f7 let's not return NULL from functions that should return ints 13 years ago