1. 6f4635f bpo-1635741: Port _warnings to the multi-phase init (GH-23379) by Victor Stinner · 3 years, 9 months ago
  2. d1e38d4 bpo-40998: Fix a refleak in create_filter() (GH-23365) by Victor Stinner · 3 years, 9 months ago
  3. ef75a62 bpo-42260: Initialize time and warnings earlier at startup (GH-23249) by Victor Stinner · 3 years, 9 months ago
  4. 58ca33b bpo-1635741: Fix ref leak in _PyWarnings_Init() error path (GH-23151) by Victor Stinner · 3 years, 9 months ago
  5. 45df61f bpo-26789: Fix logging.FileHandler._open() at exit (GH-23053) by Victor Stinner · 3 years, 9 months ago
  6. c9bc290 bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) by Victor Stinner · 3 years, 10 months ago
  7. 1bcc32f bpo-39465: Use _PyInterpreterState_GET() (GH-20788) by Victor Stinner · 4 years, 2 months ago
  8. 7036477 bpo-40421: Add PyFrame_GetBack() function (GH-19765) by Victor Stinner · 4 years, 4 months ago
  9. 8852ad4 bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773) by Victor Stinner · 4 years, 4 months ago
  10. 6d86a23 bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) by Victor Stinner · 4 years, 4 months ago
  11. a42ca74 bpo-40421: Add PyFrame_GetCode() function (GH-19757) by Victor Stinner · 4 years, 4 months ago
  12. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 4 years, 4 months ago
  13. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 4 years, 4 months ago
  14. 4a3fe08 bpo-40268: Include explicitly pycore_interp.h (GH-19505) by Victor Stinner · 4 years, 4 months ago
  15. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 4 years, 4 months ago
  16. 8d84adc bpo-32591: _PyErr_WarnUnawaitedCoroutine() sets source (GH-19247) by Victor Stinner · 4 years, 4 months ago
  17. 57c7810 bpo-39585: Delete a pending comment in _warning.c (GH-18414) by Hai Shi · 4 years, 5 months ago
  18. ae75a29 bpo-39831: Remove outdated comment. (GH-18764) by Serhiy Storchaka · 4 years, 5 months ago
  19. 2d2f855 bpo-39831: Fix a reference leak in PyErr_WarnEx(). (GH-18750) by Serhiy Storchaka · 4 years, 5 months ago
  20. 66b7973 bpo-39796: Fix _warnings module initialization (GH-18739) by Victor Stinner · 4 years, 5 months ago
  21. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 6 months ago
  22. a102ed7 bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391) by Victor Stinner · 4 years, 6 months ago
  23. 46874c2 bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) by Hai Shi · 4 years, 6 months ago
  24. 4d231bc bpo-38644: Add _PyObject_Call() (GH-17089) by Victor Stinner · 4 years, 9 months ago
  25. 5dfbb4d Fix typo in _warnings.warn_explicit() docstring (GH-16625) by Hansraj Das · 4 years, 10 months ago
  26. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 5 years ago
  27. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
  28. 86ea581 bpo-36737: Use the module state C-API for warnings. (gh-13159) by Eric Snow · 5 years ago
  29. 87d23a0 bpo-36724: Add _PyWarnings_Fini() (#12963) by Victor Stinner · 5 years ago
  30. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  31. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  32. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  33. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  34. 50b4857 bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) by Victor Stinner · 6 years ago
  35. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  36. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  37. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  38. 3f45f5d bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556) by Zackery Spytz · 6 years ago
  39. 11a8966 bpo-33375: Get filename for warnings from frame.f_code.co_filename (GH-6622) by Thomas Kluyver · 6 years ago
  40. b056562 bpo-33509: Fix _warnings for module_globals=None (#6833) by Victor Stinner · 6 years ago
  41. dba976b bpo-32591: fix abort in _PyErr_WarnUnawaitedCoroutine during shutdown (#5337) by Nathaniel J. Smith · 7 years ago
  42. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
  43. 3510334 bpo-32591: Fix PyExc_WarnFormat call (follow-up commit) (#5263) by Yury Selivanov · 7 years ago
  44. fc2f407 bpo-32591: Add native coroutine origin tracking (#5250) by Nathaniel J. Smith · 7 years ago
  45. 9b99747 bpo-31975 (PEP 565): Show DeprecationWarning in __main__ (GH-4458) by Nick Coghlan · 7 years ago
  46. 5d86246 bpo-32030: Fix compiler warnings (#4921) by Victor Stinner · 7 years ago
  47. 747f48e bpo-32230: Set sys.warnoptions with -X dev (#4820) by Victor Stinner · 7 years ago
  48. c975878 bpo-27535: Fix memory leak with warnings ignore (#4489) by Victor Stinner · 7 years ago
  49. 21c7730 bpo-32089: Use default action for ResourceWarning (#4584) by Victor Stinner · 7 years ago
  50. b98f171 bpo-27535: Cleanup create_filter() (#4516) by Victor Stinner · 7 years ago
  51. 1f15111 bpo-32030: Add _PyMainInterpreterConfig.pythonhome (#4513) by Victor Stinner · 7 years ago
  52. 8265627 bpo-27535: Optimize warnings.warn() (#4508) by Victor Stinner · 7 years ago
  53. 09f3a8a bpo-32089: Fix warnings filters in dev mode (#4482) by Victor Stinner · 7 years ago
  54. 895862a bpo-32088: Display Deprecation in debug mode (#4474) by Victor Stinner · 7 years ago
  55. d4f8480 bpo-31572: Don't silence unexpected errors in the _warnings module. (#3731) by Serhiy Storchaka · 7 years ago
  56. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 7 years ago
  57. 8b4ff53 bpo-31285: Remove splitlines identifier from Python/_warnings.c (#3803) by Oren Milman · 7 years ago
  58. 5d3e800 bpo-31566: Fix an assertion failure in _warnings.warn() in case of a bad __name__ global. (#3717) by Oren Milman · 7 years ago
  59. 91fb0af bpo-31285: Fix an assertion failure and a SystemError in warnings.warn_explicit. (#3219) by Oren Milman · 7 years ago
  60. 3f9eee6 bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593) by Eric Snow · 7 years ago
  61. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  62. 9d984fd bpo-31416: Fix assertion failures in case of a bad warnings.filters or warnings.defaultaction. (#3496) by Oren Milman · 7 years ago
  63. 252033d bpo-31411: Prevent raising a SystemError in case warnings.onceregistry is not a dictionary. (#3485) by Oren Milman · 7 years ago
  64. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  65. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  66. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  67. 86b7afd bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638) by Eric Snow · 7 years ago
  68. ba85d69 bpo-29878: Add global instances of int for 0 and 1. (#852) by Serhiy Storchaka · 7 years ago
  69. 22f1875 Issue #20185: Convert _warnings.warn() to Argument Clinic by Victor Stinner · 8 years ago
  70. 55ba38a Use _PyObject_CallMethodIdObjArgs() by Victor Stinner · 8 years ago
  71. 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 8 years ago
  72. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  73. 4778eab Replace PyObject_CallFunction() with fastcall by Victor Stinner · 8 years ago
  74. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  75. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  76. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  77. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  78. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  79. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  80. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  81. 023654f get_warnings_attr(): Fix coverity warning by Victor Stinner · 8 years ago
  82. e98445a _warnings.warn_explicit(): try to import warnings by Victor Stinner · 8 years ago
  83. e19558a Add a source parameter to warnings.warn() by Victor Stinner · 8 years ago
  84. 914cde8 On ResourceWarning, log traceback where the object was allocated by Victor Stinner · 8 years ago
  85. 1231a46 Add _showwarnmsg() and _formatwarnmsg() to warnings by Victor Stinner · 8 years ago
  86. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  87. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  88. 714e493 Issue #24305: Prevent import subsystem stack frames from being counted by Larry Hastings · 9 years ago
  89. 63a6a6f merge 3.4 (#24096) by Benjamin Peterson · 9 years ago
  90. 8c59816 merge 3.3 (#24096) by Benjamin Peterson · 9 years ago
  91. deff2b7 be more robust against the filters list changing under us (closes #24096) by Benjamin Peterson · 9 years ago
  92. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  93. 87538e7 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
  94. cb0a006 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
  95. d8089e0 Issue #16382: Improve exception message of warnings.warn() for bad category. by Berker Peksag · 10 years ago
  96. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  97. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  98. dcdd05b Close #19442: warn_explicit() does nothing when called late during Python shutdown by Victor Stinner · 11 years ago
  99. ae233ea Issue #19437: Fix show_warning() of _warnings, stop at the first error to not by Victor Stinner · 11 years ago
  100. 3cd04aa Issue #19437: Fix get_filter() from _warnings, don't call PyObject_IsSubclass() by Victor Stinner · 11 years ago