FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for Python/errors.c - python/cpython · GitHub
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
36.2k
Star
77.2k
Code
Issues
5k+
Pull requests
2.7k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
cpython
Python
errors.c
on
4591dae
User selector
Datepicker
Commit history
Commits on Apr 17, 2022
Fix refleaks in PyErr_SetHandledException (GH-91627)
sweeneyde
authored
3289209
View commit details
Copy full SHA for 3289209
View code at this point
Browse repository at this point
Commits on Apr 15, 2022
gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)
iritkatriel
authored
5d421d7
View commit details
Copy full SHA for 5d421d7
View code at this point
Browse repository at this point
Commits on Feb 25, 2022
bpo-46816: Remove declarations for non-__STDC__ compilers (GH-31466)
Show description for 4060111
arhadthedev
authored
4060111
View commit details
Copy full SHA for 4060111
View code at this point
Browse repository at this point
Commits on Feb 8, 2022
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized global objects. (gh-30928)
Show description for 81c7204
ericsnowcurrently
authored
81c7204
View commit details
Copy full SHA for 81c7204
View code at this point
Browse repository at this point
Commits on Jan 21, 2022
bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)
Show description for 1781d55
vstinner
authored
1781d55
View commit details
Copy full SHA for 1781d55
View code at this point
Browse repository at this point
bpo-46417: Finalize structseq types at exit (GH-30645)
Show description for e9e3eab
vstinner
authored
e9e3eab
View commit details
Copy full SHA for e9e3eab
View code at this point
Browse repository at this point
Commits on Dec 17, 2021
bpo-45711: Remove type and traceback from exc_info (GH-30122)
Show description for 396b583
iritkatriel
authored
396b583
View commit details
Copy full SHA for 396b583
View code at this point
Browse repository at this point
Commits on Dec 9, 2021
bpo-46008: Make runtime-global object/type lifecycle functions and state consistent. (gh-29998)
Show description for c8749b5
ericsnowcurrently
authored
c8749b5
View commit details
Copy full SHA for c8749b5
View code at this point
Browse repository at this point
Commits on Dec 8, 2021
bpo-45711: Remove unnecessary normalization of exc_info (GH-29922)
iritkatriel
authored
2109f78
View commit details
Copy full SHA for 2109f78
View code at this point
Browse repository at this point
Commits on Nov 30, 2021
bpo-45711: Change exc_info related APIs to derive type and traceback from the exception instance (GH-29780)
iritkatriel
authored
8a45ca5
View commit details
Copy full SHA for 8a45ca5
View code at this point
Browse repository at this point
Commits on Nov 25, 2021
bpo-45711: use exc_value instead of exc_type to determine if exc_info is valid. Add more assertions. (GH-29627)
iritkatriel
authored
c456dfa
View commit details
Copy full SHA for c456dfa
View code at this point
Browse repository at this point
Commits on Nov 20, 2021
bpo-45848: Allow the parser to get error lines from encoded files (GH-29646)
pablogsal
authored
fdcc46d
View commit details
Copy full SHA for fdcc46d
View code at this point
Browse repository at this point
Commits on Oct 13, 2021
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Show description for aac29af
vstinner
authored
aac29af
View commit details
Copy full SHA for aac29af
View code at this point
Browse repository at this point
Commits on Oct 12, 2021
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Show description for d943d19
vstinner
authored
d943d19
View commit details
Copy full SHA for d943d19
View code at this point
Browse repository at this point
Commits on Oct 11, 2021
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Show description for ce3489c
vstinner
authored
ce3489c
View commit details
Copy full SHA for ce3489c
View code at this point
Browse repository at this point
Commits on Sep 5, 2021
bpo-41031: Match C and Python code formatting of unprintable exceptions and exceptions in the __main__ module. (GH-28139)
iritkatriel
authored
9e31b39
View commit details
Copy full SHA for 9e31b39
View code at this point
Browse repository at this point
Commits on Sep 3, 2021
bpo-45083: Include the exception class qualname when formatting an exception (GH-28119)
Show description for b4b6342
iritkatriel
and
Erlend Egeberg Aasland
authored
b4b6342
View commit details
Copy full SHA for b4b6342
View code at this point
Browse repository at this point
Commits on Aug 10, 2021
bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle in its context chain (GH-27626)
Show description for d5c2174
iritkatriel
authored
d5c2174
View commit details
Copy full SHA for d5c2174
View code at this point
Browse repository at this point
Commits on Aug 3, 2021
closes bpo-39091: Fix segfault when Exception constructor returns non-exception for gen.throw. (#17658)
Show description for 83ca46b
coolreader18
and
benjaminp
authored
83ca46b
View commit details
Copy full SHA for 83ca46b
View code at this point
Browse repository at this point
Commits on Jul 26, 2021
bpo-44590: Lazily allocate frame objects (GH-27077)
Show description for ae0a2b7
markshannon
authored
ae0a2b7
View commit details
Copy full SHA for ae0a2b7
View code at this point
Browse repository at this point
Commits on May 13, 2021
bpo-44094: Remove deprecated PyErr_ APIs. (GH-26011)
Show description for ae3c66a
methane
authored
ae3c66a
View commit details
Copy full SHA for ae3c66a
View code at this point
Browse repository at this point
Commits on Apr 23, 2021
bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)
Show description for a77aac4
pablogsal
authored
a77aac4
View commit details
Copy full SHA for a77aac4
View code at this point
Browse repository at this point
Commits on Apr 2, 2021
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Show description for 442ad74
vstinner
authored
442ad74
View commit details
Copy full SHA for 442ad74
View code at this point
Browse repository at this point
Commits on Dec 8, 2020
bpo-32381: Rewrite PyErr_ProgramText() (GH-23700)
Show description for 815506d
vstinner
authored
815506d
View commit details
Copy full SHA for 815506d
View code at this point
Browse repository at this point
bpo-42599: Remove useless PyModule_GetWarningsModule() (GH-23691)
Show description for 0f91f58
shihai1991
authored
0f91f58
View commit details
Copy full SHA for 0f91f58
View code at this point
Browse repository at this point
Commits on Dec 2, 2020
bpo-42500: Fix recursion in or after except (GH-23568)
Show description for 4e7a69b
markshannon
authored
4e7a69b
View commit details
Copy full SHA for 4e7a69b
View code at this point
Browse repository at this point
Commits on Oct 26, 2020
bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)
Show description for b510e10
serhiy-storchaka
authored
b510e10
View commit details
Copy full SHA for b510e10
View code at this point
Browse repository at this point
Commits on Oct 10, 2020
bpo-41991: Remove _PyObject_HasAttrId (GH-22629)
Show description for 98c4433
serhiy-storchaka
authored
98c4433
View commit details
Copy full SHA for 98c4433
View code at this point
Browse repository at this point
Commits on Jun 16, 2020
bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20888)
Show description for 113e2b0
lysnikolaou
authored
113e2b0
View commit details
Copy full SHA for 113e2b0
View code at this point
Browse repository at this point
Commits on Jun 13, 2020
Remove redundant var in PyErr_NewException() (GH-20850)
shihai1991
authored
1c209e3
View commit details
Copy full SHA for 1c209e3
View code at this point
Browse repository at this point
Commits on Jun 1, 2020
bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)
Show description for 3026cad
vstinner
authored
3026cad
View commit details
Copy full SHA for 3026cad
View code at this point
Browse repository at this point
Commits on May 22, 2020
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Show description for 7c30d12
cjerdonek
authored
7c30d12
View commit details
Copy full SHA for 7c30d12
View code at this point
Browse repository at this point
Commits on May 18, 2020
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Show description for da742ba
cjerdonek
authored
da742ba
View commit details
Copy full SHA for da742ba
View code at this point
Browse repository at this point
Commits on May 5, 2020
bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)
Show description for b0be6b3
vstinner
authored
b0be6b3
View commit details
Copy full SHA for b0be6b3
View code at this point
Browse repository at this point
Commits on Apr 29, 2020
bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)
Show description for 4386b90
vstinner
authored
4386b90
View commit details
Copy full SHA for 4386b90
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL