| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-1635741: Port _warnings to the multi-phase init (GH-23379) | Victor Stinner | 2020-11-18 | 1 | -40/+30 |
|
|
* | bpo-40998: Fix a refleak in create_filter() (GH-23365) | Victor Stinner | 2020-11-18 | 1 | -3/+5 |
|
|
* | bpo-42260: Initialize time and warnings earlier at startup (GH-23249) | Victor Stinner | 2020-11-12 | 1 | -23/+7 |
|
|
* | bpo-1635741: Fix ref leak in _PyWarnings_Init() error path (GH-23151) | Victor Stinner | 2020-11-04 | 1 | -8/+3 |
|
|
* | bpo-26789: Fix logging.FileHandler._open() at exit (GH-23053) | Victor Stinner | 2020-11-02 | 1 | -1/+1 |
|
|
* | bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) | Victor Stinner | 2020-10-27 | 1 | -2/+3 |
|
|
* | bpo-39465: Use _PyInterpreterState_GET() (GH-20788) | Victor Stinner | 2020-06-10 | 1 | -6/+6 |
|
|
* | bpo-40421: Add PyFrame_GetBack() function (GH-19765) | Victor Stinner | 2020-04-29 | 1 | -6/+12 |
|
|
* | bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773) | Victor Stinner | 2020-04-28 | 1 | -1/+5 |
|
|
* | bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) | Victor Stinner | 2020-04-28 | 1 | -4/+0 |
|
|
* | bpo-40421: Add PyFrame_GetCode() function (GH-19757) | Victor Stinner | 2020-04-28 | 1 | -5/+13 |
|
|
* | bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) | Victor Stinner | 2020-04-14 | 1 | -1/+1 |
|
|
* | bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) | Victor Stinner | 2020-04-14 | 1 | -2/+2 |
|
|
* | bpo-40268: Include explicitly pycore_interp.h (GH-19505) | Victor Stinner | 2020-04-14 | 1 | -0/+1 |
|
|
* | bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data.... | Serhiy Storchaka | 2020-04-11 | 1 | -2/+2 |
|
|
* | bpo-32591: _PyErr_WarnUnawaitedCoroutine() sets source (GH-19247) | Victor Stinner | 2020-03-31 | 1 | -3/+20 |
|
|
* | bpo-39585: Delete a pending comment in _warning.c (GH-18414) | Hai Shi | 2020-03-14 | 1 | -1/+2 |
|
|
* | bpo-39831: Remove outdated comment. (GH-18764) | Serhiy Storchaka | 2020-03-03 | 1 | -3/+1 |
|
|
* | bpo-39831: Fix a reference leak in PyErr_WarnEx(). (GH-18750) | Serhiy Storchaka | 2020-03-02 | 1 | -2/+3 |
|
|
* | bpo-39796: Fix _warnings module initialization (GH-18739) | Victor Stinner | 2020-03-02 | 1 | -13/+24 |
|
|
* | bpo-39245: Switch to public API for Vectorcall (GH-18460) | Petr Viktorin | 2020-02-11 | 1 | -4/+4 |
|
|
* | bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391) | Victor Stinner | 2020-02-07 | 1 | -2/+2 |
|
|
* | bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) | Hai Shi | 2020-01-30 | 1 | -3/+2 |
|
|
* | bpo-38644: Add _PyObject_Call() (GH-17089) | Victor Stinner | 2019-11-14 | 1 | -3/+5 |
|
|
* | Fix typo in _warnings.warn_explicit() docstring (GH-16625) | Hansraj Das | 2019-10-08 | 1 | -1/+1 |
|
|
* | bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) | Jeroen Demeyer | 2019-07-11 | 1 | -1/+1 |
|
|
* | bpo-37483: add _PyObject_CallOneArg() function (#14558) | Jeroen Demeyer | 2019-07-04 | 1 | -4/+4 |
|
|
* | bpo-36737: Use the module state C-API for warnings. (gh-13159) | Eric Snow | 2019-05-10 | 1 | -119/+198 |
|
|
* | bpo-36724: Add _PyWarnings_Fini() (#12963) | Victor Stinner | 2019-04-26 | 1 | -16/+27 |
|
|
* | bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) | Serhiy Storchaka | 2019-02-25 | 1 | -5/+16 |
|
|
* | bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) | Serhiy Storchaka | 2018-12-11 | 1 | -1/+5 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) | Serhiy Storchaka | 2018-11-27 | 1 | -1/+1 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -1/+1 |
|
|
* | bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) | Victor Stinner | 2018-11-01 | 1 | -1/+1 |
|
|
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 1 | -1/+1 |
|
|
* | closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) | Benjamin Peterson | 2018-09-12 | 1 | -1/+1 |
|
|
* | bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) | Victor Stinner | 2018-08-03 | 1 | -2/+2 |
|
|
* | bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556) | Zackery Spytz | 2018-06-09 | 1 | -1/+0 |
|
|
* | bpo-33375: Get filename for warnings from frame.f_code.co_filename (GH-6622) | Thomas Kluyver | 2018-06-08 | 1 | -66/+4 |
|
|
* | bpo-33509: Fix _warnings for module_globals=None (#6833) | Victor Stinner | 2018-05-15 | 1 | -1/+8 |
|
|
* | bpo-32591: fix abort in _PyErr_WarnUnawaitedCoroutine during shutdown (#5337) | Nathaniel J. Smith | 2018-01-26 | 1 | -0/+7 |
|
|
* | bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ... | Serhiy Storchaka | 2018-01-25 | 1 | -8/+2 |
|
|
* | bpo-32591: Fix PyExc_WarnFormat call (follow-up commit) (#5263) | Yury Selivanov | 2018-01-22 | 1 | -5/+4 |
|
|
* | bpo-32591: Add native coroutine origin tracking (#5250) | Nathaniel J. Smith | 2018-01-21 | 1 | -0/+47 |
|
|
* | bpo-31975 (PEP 565): Show DeprecationWarning in __main__ (GH-4458) | Nick Coghlan | 2018-01-08 | 1 | -7/+33 |
|
|
* | bpo-32030: Fix compiler warnings (#4921) | Victor Stinner | 2017-12-19 | 1 | -13/+4 |
|
|
* | bpo-32230: Set sys.warnoptions with -X dev (#4820) | Victor Stinner | 2017-12-12 | 1 | -51/+22 |
|
|
* | bpo-27535: Fix memory leak with warnings ignore (#4489) | Victor Stinner | 2017-11-27 | 1 | -4/+9 |
|
|
* | bpo-32089: Use default action for ResourceWarning (#4584) | Victor Stinner | 2017-11-27 | 1 | -3/+2 |
|
|
* | bpo-27535: Cleanup create_filter() (#4516) | Victor Stinner | 2017-11-23 | 1 | -38/+18 |
|
|