index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
errors.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #25677: Merge SyntaxError caret positioning from 3.5
Martin Panter
2016-12-19
1
-4/+1
|
\
|
*
Issue #25677: Correct syntax error caret for indented blocks.
Martin Panter
2016-12-11
1
-4/+1
*
|
Issue #28512: Fixed setting the offset attribute of SyntaxError by
Serhiy Storchaka
2016-12-11
1
-8/+4
|
\
\
|
|
/
|
*
Issue #28512: Fixed setting the offset attribute of SyntaxError by
Serhiy Storchaka
2016-12-11
1
-8/+4
*
|
Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.
Serhiy Storchaka
2016-11-16
1
-1/+1
|
\
\
|
|
/
|
*
Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.
Serhiy Storchaka
2016-11-16
1
-1/+1
*
|
Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising
Serhiy Storchaka
2016-10-21
1
-0/+41
*
|
Issue #28410: Keep the traceback of original exception in _PyErr_ChainExcepti...
Serhiy Storchaka
2016-10-21
1
-1/+4
|
\
\
|
|
/
|
*
Issue #28410: Keep the traceback of original exception in _PyErr_ChainExcepti...
Serhiy Storchaka
2016-10-21
1
-1/+4
*
|
Issue #15767: Use ModuleNotFoundError.
Eric Snow
2016-09-07
1
-6/+22
*
|
Issue #27809: PyErr_SetImportError() uses fast call
Victor Stinner
2016-08-22
1
-14/+8
*
|
Add _PyErr_CreateException()
Victor Stinner
2016-08-22
1
-30/+29
|
/
*
Issue #23960: Cleanup args and kwargs on error in PyErr_SetImportError
Berker Peksag
2016-05-01
1
-3/+3
*
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
1
-2/+2
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-2/+2
*
Issue #22836: Keep exception reports sensible despite errors
Martin Panter
2016-02-28
1
-4/+12
*
Add _PyThreadState_UncheckedGet()
Victor Stinner
2016-01-20
1
-7/+1
*
Issue #20440: More use of Py_SETREF.
Serhiy Storchaka
2015-12-27
1
-8/+5
*
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
Yury Selivanov
2015-07-03
1
-1/+1
*
Issue #22977: Fixed formatting Windows error messages on Wine.
Serhiy Storchaka
2015-04-02
1
-2/+2
|
\
|
*
Issue #22977: Fixed formatting Windows error messages on Wine.
Serhiy Storchaka
2015-04-02
1
-2/+2
*
|
Issue #23571: PyErr_FormatV() and PyErr_SetObject() now always clear the
Victor Stinner
2015-03-24
1
-8/+7
*
|
Issue #23694: Enhance _Py_fopen(), it now raises an exception on error
Victor Stinner
2015-03-18
1
-0/+4
*
|
Issue #21715: Extracted shared complicated code in the _io module to new
Serhiy Storchaka
2014-10-08
1
-0/+24
|
\
\
|
|
/
|
*
Issue #21715: Extracted shared complicated code in the _io module to new
Serhiy Storchaka
2014-10-08
1
-0/+24
*
|
Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` b...
Antoine Pitrou
2014-09-30
1
-10/+15
|
/
*
Issue #20517: Removed unnecessary new (short-lived) functions from PyErr.
Larry Hastings
2014-02-10
1
-101/+3
*
Issue #20517: Functions in the os module that accept two filenames
Larry Hastings
2014-02-10
1
-22/+147
*
Issue #19512, #19515: remove shared identifiers, move identifiers where they
Victor Stinner
2013-11-07
1
-2/+5
*
Issue #19512: add _PyUnicode_CompareWithId() function
Victor Stinner
2013-11-06
1
-1/+1
*
Issue #19512: add some common identifiers to only create common strings once,
Victor Stinner
2013-11-06
1
-1/+1
*
Don't export internal symbols ("make smelly")
Antoine Pitrou
2013-10-12
1
-1/+1
*
Factor-out the common code for setting a KeyError.
Raymond Hettinger
2013-09-02
1
-0/+14
*
Issue #18571: Implementation of the PEP 446: file descriptors and file handles
Victor Stinner
2013-08-27
1
-2/+2
*
Close #11619: The parser and the import machinery do not encode Unicode
Victor Stinner
2013-08-26
1
-15/+41
*
Issue #18664, #18408: Rewrite PyErr_WriteUnraisable() to handle errors
Victor Stinner
2013-08-26
1
-40/+62
*
Issue #18520: PyErr_NoMemory() now fails with a fatal error if it is called
Victor Stinner
2013-07-22
1
-0/+6
*
Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail
Victor Stinner
2013-07-17
1
-0/+11
*
Issue #18408: Fix PyErr_SetImportError(), handle PyDict_SetItemString() failure
Victor Stinner
2013-07-17
1
-2/+5
*
Issue #18408: Fix PyErr_NormalizeException(), handle PyObject_IsSubclass() fa...
Victor Stinner
2013-07-16
1
-1/+10
*
Issue #18408: errors.c: in debug mode, calling PyErr_BadInternalCall() now
Victor Stinner
2013-07-11
1
-0/+1
*
Issue #15767: Revert 3a50025f1900 for ModuleNotFoundError
Brett Cannon
2013-07-04
1
-22/+3
*
Issue #15767: Touch up ModuleNotFoundError usage by import.
Brett Cannon
2013-06-13
1
-3/+22
*
Issue #16719: Get rid of WindowsError. Use OSError instead
Andrew Svetlov
2012-12-19
1
-3/+3
*
Issue #7317: Display full tracebacks when an error occurs asynchronously.
Andrew Svetlov
2012-11-03
1
-7/+8
*
Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.
Martin v. Löwis
2012-04-19
1
-0/+33
*
Fix it for good :-)
Antoine Pitrou
2012-04-18
1
-3/+1
*
fix refcnt/style/debuging oversights
Benjamin Peterson
2012-04-18
1
-5/+7
*
Fix email post-commit review comments.
Brian Curtin
2012-04-18
1
-8/+11
*
Fix #14600. Correct reference handling and naming of ImportError convenience ...
Brian Curtin
2012-04-17
1
-27/+20
[next]