Python 3.7.3
  1. c851dfc bpo-33316: PyThread_release_lock always fails (GH-6541) by Miss Islington (bot) · 7 years ago
  2. 97d6a56 bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561) by Miss Islington (bot) · 7 years ago
  3. 6d0254b bpo-34756: Silence only ImportError and AttributeError in sys.breakpointhook(). (GH-9457) by Miss Islington (bot) · 7 years ago
  4. 3e3d57d bpo-35470: Fix a reference counting bug in _PyImport_FindExtensionObjectEx(). (GH-11128) by Miss Islington (bot) · 7 years ago
  5. d634abd [3.7] Bump copyright years to 2019. (GH-11406) by Benjamin Peterson · 7 years ago
  6. d823443 bpo-35550: Fix incorrect Solaris define guards (GH-11275) by Miss Islington (bot) · 7 years ago
  7. 3cae16d bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-11047) (GH-11107) by Serhiy Storchaka · 7 years ago
  8. 62674f3 bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077) by Miss Islington (bot) · 7 years ago
  9. ea773eb bpo-35452: Make PySys_HasWarnOptions() never raising an exception. (GH-11075) by Miss Islington (bot) · 7 years ago
  10. fc79175 bpo-35451: Fix reference counting for sys.warnoptions and sys._xoptions. (GH-11063) by Miss Islington (bot) · 7 years ago
  11. 8b7d8ac bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) by Miss Islington (bot) · 7 years ago
  12. 602d307 bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) (GH-11020) by Zackery Spytz · 7 years ago
  13. 2d594f8 bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10914) by Miss Islington (bot) · 7 years ago
  14. b135535 bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008) by Miss Islington (bot) · 7 years ago
  15. 5ceb701 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Miss Islington (bot) · 7 years ago
  16. 6f5fa1b bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623) (GH-10718) by Victor Stinner · 7 years ago
  17. f6e323c bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672) (GH-10673) by Victor Stinner · 7 years ago
  18. a519411 Revert "bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)" (GH-10660) by Victor Stinner · 7 years ago
  19. 6eff6b8 bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) (GH-10619) by Victor Stinner · 7 years ago
  20. e851049 bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executable (GH-9861) by Steve Dower · 7 years ago
  21. 0ee5409 Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576) by Miss Islington (bot) · 7 years ago
  22. d2be9a5 bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532) by Miss Islington (bot) · 7 years ago
  23. f6602f9 bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) by Miss Islington (bot) · 7 years ago
  24. 5f4d05d [3.7] bpo-35214: Initial clang MemorySanitizer support (GH-10479) (GH-10492) by Gregory P. Smith · 7 years ago
  25. f16ebcd bpo-35193: Fix an off by one error in the RETURN_VALUE case. (GH-10418) by Miss Islington (bot) · 7 years ago
  26. 7beb8c5 bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284) by Miss Islington (bot) · 7 years ago
  27. 192c547 bpo-26558: Fix Py_FatalError() with GIL released (GH-10267) by Miss Islington (bot) · 7 years ago
  28. 7d35f79 bpo-34403: Always implement _Py_GetForceASCII() (GH-10235) by Victor Stinner · 7 years ago
  29. 21220bb bpo-34403: Fix initfsencoding() for ASCII (GH-10233) by Victor Stinner · 7 years ago
  30. 178d1c0 bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705) by Miss Islington (bot) · 7 years ago
  31. 72927d0 Fix an incorrect check in compiler_try_except(). (GH-9810) by Miss Islington (bot) · 7 years ago
  32. 1c2cb51 Fix a possible decref of a borrowed reference in symtable.c. (GH-9786) by Miss Islington (bot) · 7 years ago
  33. cd4dd93 closes bpo-34868: Improve error message with '_' is combined with an invalid type specifier. (GH-9666) by Miss Islington (bot) · 7 years ago
  34. 0f161b3 bpo-34854: Fix compiling string annotations containing lambdas. (GH-9645) by Miss Islington (bot) · 7 years ago
  35. b54fc15 Drop confusing commented out code in pystrtod.c (GH-6072) (GH-9586) by Victor Stinner · 7 years ago
  36. 187f2dd bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473) by Miss Islington (bot) · 7 years ago
  37. 95cc3ee Revert "[3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off by default (GH-9379)" (GH-9416) by Victor Stinner · 7 years ago
  38. 144f1e2 [3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off by default (GH-9379) by Victor Stinner · 7 years ago
  39. 4007e4e Make sure the line comes from the same node as the col offset. (GH-9189) by Miss Islington (bot) · 7 years ago
  40. d8bc7a6 closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point to the "async" keyword. (GH-4175) by Miss Islington (bot) · 7 years ago
  41. 4902017 bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077) by Miss Islington (bot) · 7 years ago
  42. 84b0129 _Py_CoerceLegacyLocale() restores LC_CTYPE on fail (GH-9044) (GH-9046) by Victor Stinner · 7 years ago
  43. 0b9ea4b [3.7] bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986) (GH-8987) by Victor Stinner · 7 years ago
  44. 98c49c6 bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979) (GH-8981) by Victor Stinner · 7 years ago
  45. 65ef742 bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972) (GH-8974) by Victor Stinner · 7 years ago
  46. 2caf86f bpo-34503: Fix refleak in PyErr_SetObject() (GH-8934) by Miss Islington (bot) · 7 years ago
  47. a590363 closes bpo-34474: Python/bltinmodule.c: Add missing NULL check in builtin_sum_impl() (GH-8872) by Miss Islington (bot) · 7 years ago
  48. b8e7319 bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (GH-8852) by Miss Islington (bot) · 7 years ago
  49. 0c90d6f [3.7] bpo-34247: Fix Python 3.7 initialization (#8659) by Victor Stinner · 7 years ago
  50. 220afff bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262) (GH-8423) by Miss Islington (bot) · 7 years ago
  51. 25b87d3 bpo-34190: Fix reference leak in call_function() (GH-8413) (GH-8418) by Miss Islington (bot) · 7 years ago
  52. 7638eb8 bpo-34126: Fix crashes while profiling invalid calls. (GH-8300) (GH-8371) by Miss Islington (bot) · 7 years ago
  53. 03ec4df bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043) (GH-8352) by Miss Islington (bot) · 7 years ago
  54. c721472 bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274) by Miss Islington (bot) · 7 years ago
  55. 9beed0c bpo-34080: Fix a memory leak in the compiler. (GH-8222) by Miss Islington (bot) · 7 years ago
  56. 48d2aeb bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192) by Miss Islington (bot) · 7 years ago
  57. 6f4fbf8 bpo-22689: Copy the result of getenv() in sys_breakpointhook(). (GH-8194) by Miss Islington (bot) · 7 years ago
  58. f5197dd bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH-8159) by Miss Islington (bot) · 7 years ago
  59. 625755e Fix GCC warning in Python/hamt.c (GH-7618) by Miss Islington (bot) · 7 years ago
  60. 20ae4c6 bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918) (GH-8070) by Miss Islington (bot) · 7 years ago
  61. 4c20d2b bpo-33985: Implement ContextVar.name attribute. (GH-7980) by Miss Islington (bot) · 7 years ago
  62. 56aaef0 bpo-33451: Close pyc files before calling PyEval_EvalCode() (GH-7884) by Miss Islington (bot) · 7 years ago
  63. 3747dd1 bpo-33932: Calling Py_Initialize() twice does nothing (GH-7845) by Miss Islington (bot) · 7 years ago
  64. a971a6f bpo-33803: Fix a crash in hamt.c (GH-7504) (GH-7505) by Miss Islington (bot) · 7 years ago
  65. 103058e bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401) by Miss Islington (bot) · 7 years ago
  66. 150033d bpo-31849: Fix warning in pyhash.c (GH-6799) by Miss Islington (bot) · 7 years ago
  67. a4dd46a bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) by Miss Islington (bot) · 7 years ago
  68. 2641ee5 bpo-32911: Revert bpo-29463. (GH-7121) by Serhiy Storchaka · 7 years ago
  69. 508d769 bpo-33612: Remove PyThreadState_Clear() assertion (GH-7069) (GH-7074) by Miss Islington (bot) · 7 years ago
  70. b32f889 [3.7] bpo-33475: Fix and improve converting annotations to strings. (GH-6774). (GH-6927) by Serhiy Storchaka · 7 years ago
  71. 820219f bpo-33509: Fix _warnings for module_globals=None (GH-6833) by Miss Islington (bot) · 7 years ago
  72. 6bd0c47 bpo-32604: Remove xid registry. (#6813) by Eric Snow · 7 years ago
  73. 8ed545f bpo-28055: Fix unaligned accesses in siphash24(). (GH-6123) by Miss Islington (bot) · 7 years ago
  74. a93a663 [3.7] bpo-33363: raise SyntaxError for async for/with outside async functions (GH-6616). (GH-6619) by Zsolt Dollenstein · 7 years ago
  75. 291c9d4 bpo-33330: Improve error handling in PyImport_Cleanup(). (GH-6564) by Miss Islington (bot) · 7 years ago
  76. 52a5a17 bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6273) by Miss Islington (bot) · 7 years ago
  77. 3295529 Spelling fixes to docs, docstrings, and comments (GH-6374) by Miss Islington (bot) · 7 years ago
  78. a09bb87 [3.7] bpo-33169: Remove values of `None` from sys.path_importer_cache when invalidating caches (GH-6402) (GH-6403) by Brett Cannon · 7 years ago
  79. 3c193cf [3.7] bpo-29673: fix gdb scripts pystack and pystackv (GH-6126) (GH-6399) by Miss Islington (bot) · 7 years ago
  80. 64421d9 bpo-33231: Fix potential leak in normalizestring() (GH-6386) by Miss Islington (bot) · 7 years ago
  81. fcd4e03 bpo-29922: Improve error messages in 'async with' (GH-6352) by Miss Islington (bot) · 7 years ago
  82. 9e96e7b bpo-33132: Fix more reference counting issues in the compiler. (GH-6323) by Miss Islington (bot) · 7 years ago
  83. ee37845 bpo-33053: -m now adds *starting* directory to sys.path (GH-6231) (#6236) by Nick Coghlan · 7 years ago
  84. c6d94c3 bpo-33042: Fix pre-initialization sys module configuration (GH-6157) by Miss Islington (bot) · 7 years ago
  85. 471364b bpo-33132: Fix reference counting issues in the compiler. (GH-6209) by Miss Islington (bot) · 7 years ago
  86. b9744e9 bpo-33041: Fixed jumping if the function contains an "async for" loop. (GH-6154) by Serhiy Storchaka · 7 years ago
  87. 56cce1c [3.7] bpo-33021: Release the GIL during fstat() calls (GH-6019) (GH-6159) by Miss Islington (bot) · 7 years ago
  88. 5506d60 bpo-32836: Remove obsolete code from symtable pass (GH-5680) by Miss Islington (bot) · 7 years ago
  89. 9e94c0d [3.7] bpo-33041: Add missed error checks when compile "async for" (GH-6053) (GH-6060) by Serhiy Storchaka · 7 years ago
  90. e724dd4 Add two missing error checks in hamt.c (GH-5851) by Miss Islington (bot) · 7 years ago
  91. 31e2b76 bpo-33005: Fix _PyGILState_Reinit() (GH-6001) by Miss Islington (bot) · 7 years ago
  92. 8d9d4b5 bpo-32838: Fix Python versions in the table of magic numbers. (GH-5658) by Miss Islington (bot) · 7 years ago
  93. eed3c7a bpo-32604: Swap threads only if the interpreter is different. (gh-5783) by Miss Islington (bot) · 7 years ago
  94. ca82e3c bpo-32869: Fix incorrect dst buffer size for MultiByteToWideChar (GH-5739) by Miss Islington (bot) · 7 years ago
  95. 3db05a3 bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-5710) by Miss Islington (bot) · 8 years ago
  96. 7df8049 Fix some warnings produced by different compilers. (GH-5593) (GH-5600) by Miss Islington (bot) · 8 years ago
  97. 2bb0bfa bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560) (GH-5562) by Miss Islington (bot) · 8 years ago
  98. e86db34 [3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520) by Miss Islington (bot) · 8 years ago
  99. f33eced bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (GH-5507) by Miss Islington (bot) · 8 years ago
  100. a23d30f bpo-32303 - Consistency fixes for namespace loaders (GH-5481) (#5503) by Barry Warsaw · 8 years ago