1. 86ea581 bpo-36737: Use the module state C-API for warnings. (gh-13159) by Eric Snow · 5 years ago
  2. 87d23a0 bpo-36724: Add _PyWarnings_Fini() (#12963) by Victor Stinner · 5 years ago
  3. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  4. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  5. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  6. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  7. 50b4857 bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) by Victor Stinner · 6 years ago
  8. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  9. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  10. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  11. 3f45f5d bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556) by Zackery Spytz · 6 years ago
  12. 11a8966 bpo-33375: Get filename for warnings from frame.f_code.co_filename (GH-6622) by Thomas Kluyver · 6 years ago
  13. b056562 bpo-33509: Fix _warnings for module_globals=None (#6833) by Victor Stinner · 6 years ago
  14. dba976b bpo-32591: fix abort in _PyErr_WarnUnawaitedCoroutine during shutdown (#5337) by Nathaniel J. Smith · 6 years ago
  15. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 6 years ago
  16. 3510334 bpo-32591: Fix PyExc_WarnFormat call (follow-up commit) (#5263) by Yury Selivanov · 7 years ago
  17. fc2f407 bpo-32591: Add native coroutine origin tracking (#5250) by Nathaniel J. Smith · 7 years ago
  18. 9b99747 bpo-31975 (PEP 565): Show DeprecationWarning in __main__ (GH-4458) by Nick Coghlan · 7 years ago
  19. 5d86246 bpo-32030: Fix compiler warnings (#4921) by Victor Stinner · 7 years ago
  20. 747f48e bpo-32230: Set sys.warnoptions with -X dev (#4820) by Victor Stinner · 7 years ago
  21. c975878 bpo-27535: Fix memory leak with warnings ignore (#4489) by Victor Stinner · 7 years ago
  22. 21c7730 bpo-32089: Use default action for ResourceWarning (#4584) by Victor Stinner · 7 years ago
  23. b98f171 bpo-27535: Cleanup create_filter() (#4516) by Victor Stinner · 7 years ago
  24. 1f15111 bpo-32030: Add _PyMainInterpreterConfig.pythonhome (#4513) by Victor Stinner · 7 years ago
  25. 8265627 bpo-27535: Optimize warnings.warn() (#4508) by Victor Stinner · 7 years ago
  26. 09f3a8a bpo-32089: Fix warnings filters in dev mode (#4482) by Victor Stinner · 7 years ago
  27. 895862a bpo-32088: Display Deprecation in debug mode (#4474) by Victor Stinner · 7 years ago
  28. d4f8480 bpo-31572: Don't silence unexpected errors in the _warnings module. (#3731) by Serhiy Storchaka · 7 years ago
  29. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 7 years ago
  30. 8b4ff53 bpo-31285: Remove splitlines identifier from Python/_warnings.c (#3803) by Oren Milman · 7 years ago
  31. 5d3e800 bpo-31566: Fix an assertion failure in _warnings.warn() in case of a bad __name__ global. (#3717) by Oren Milman · 7 years ago
  32. 91fb0af bpo-31285: Fix an assertion failure and a SystemError in warnings.warn_explicit. (#3219) by Oren Milman · 7 years ago
  33. 3f9eee6 bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593) by Eric Snow · 7 years ago
  34. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  35. 9d984fd bpo-31416: Fix assertion failures in case of a bad warnings.filters or warnings.defaultaction. (#3496) by Oren Milman · 7 years ago
  36. 252033d bpo-31411: Prevent raising a SystemError in case warnings.onceregistry is not a dictionary. (#3485) by Oren Milman · 7 years ago
  37. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  38. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  39. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  40. 86b7afd bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638) by Eric Snow · 7 years ago
  41. ba85d69 bpo-29878: Add global instances of int for 0 and 1. (#852) by Serhiy Storchaka · 7 years ago
  42. 22f1875 Issue #20185: Convert _warnings.warn() to Argument Clinic by Victor Stinner · 8 years ago
  43. 55ba38a Use _PyObject_CallMethodIdObjArgs() by Victor Stinner · 8 years ago
  44. 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 8 years ago
  45. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  46. 4778eab Replace PyObject_CallFunction() with fastcall by Victor Stinner · 8 years ago
  47. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  48. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  49. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  50. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  51. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  52. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  53. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  54. 023654f get_warnings_attr(): Fix coverity warning by Victor Stinner · 8 years ago
  55. e98445a _warnings.warn_explicit(): try to import warnings by Victor Stinner · 8 years ago
  56. e19558a Add a source parameter to warnings.warn() by Victor Stinner · 8 years ago
  57. 914cde8 On ResourceWarning, log traceback where the object was allocated by Victor Stinner · 8 years ago
  58. 1231a46 Add _showwarnmsg() and _formatwarnmsg() to warnings by Victor Stinner · 8 years ago
  59. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  60. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  61. 714e493 Issue #24305: Prevent import subsystem stack frames from being counted by Larry Hastings · 9 years ago
  62. 63a6a6f merge 3.4 (#24096) by Benjamin Peterson · 9 years ago
  63. 8c59816 merge 3.3 (#24096) by Benjamin Peterson · 9 years ago
  64. deff2b7 be more robust against the filters list changing under us (closes #24096) by Benjamin Peterson · 9 years ago
  65. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  66. 87538e7 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
  67. cb0a006 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
  68. d8089e0 Issue #16382: Improve exception message of warnings.warn() for bad category. by Berker Peksag · 10 years ago
  69. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  70. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  71. dcdd05b Close #19442: warn_explicit() does nothing when called late during Python shutdown by Victor Stinner · 11 years ago
  72. ae233ea Issue #19437: Fix show_warning() of _warnings, stop at the first error to not by Victor Stinner · 11 years ago
  73. 3cd04aa Issue #19437: Fix get_filter() from _warnings, don't call PyObject_IsSubclass() by Victor Stinner · 11 years ago
  74. 856f45f Issue #19442: Fix warnings emitted during Python shutdown by Victor Stinner · 11 years ago
  75. a4c704b Issue #19424: Fix the warnings module to accept filename containing surrogate by Victor Stinner · 11 years ago
  76. ce5f4fb Issue #19421: fix a check in warnings.warn() to be able to use it during Python by Victor Stinner · 11 years ago
  77. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  78. 78e2c98 Issue #18408: Fix show_warning(), clear also the exception raised by by Victor Stinner · 11 years ago
  79. 070cb3c Issue #1545463: At shutdown, defer finalization of codec modules so that stderr remains usable. by Antoine Pitrou · 11 years ago
  80. aa5c5c6 Finally fix all test_capi refleaks by Antoine Pitrou · 13 years ago
  81. 21e0da2 remove some usage of Py_UNICODE_TOUPPER/LOWER by Benjamin Peterson · 13 years ago
  82. 720682e Merge 3.2 by Florent Xicluna · 13 years ago
  83. 5126df6 Remove obsolete py3k comment. by Florent Xicluna · 13 years ago
  84. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  85. d10759f Make _PyUnicode_FromId return borrowed references. by Martin v. Löwis · 13 years ago
  86. 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
  87. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  88. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  89. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  90. b62a7b2 Fix _warnings.c: make the filename string ready by Victor Stinner · 13 years ago
  91. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  92. 52a7d98 Make warnings accept a callable for showwarnings instead of by Brett Cannon · 13 years ago
  93. bb4a747 start out this branch always with filename NULL by Benjamin Peterson · 13 years ago
  94. a55007a plug refleak by Benjamin Peterson · 13 years ago
  95. 8b0508e Issue #12467: warnings: fix a race condition if a warning is emitted at by Victor Stinner · 13 years ago
  96. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  97. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  98. cb428f0 Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem by Victor Stinner · 14 years ago
  99. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  100. ef0e6c3 _warnings exposed two variables with the name 'default_action' and by Brett Cannon · 14 years ago