1. d807862 bpo-34170: Fix pymain_run_file() (GH-8660) by Victor Stinner · 6 years ago
  2. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  3. 2ebd381 Fix docstring of Profiler class (GH-8651) by INADA Naoki · 6 years ago
  4. 72ec319 bpo-34170: Cleanup pymain_run_filename() (GH-8631) by Victor Stinner · 6 years ago
  5. fc512e3 bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582) by jdemeyer · 6 years ago
  6. 80b762f bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608) by Victor Stinner · 6 years ago
  7. 6c785c0 bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607) by Victor Stinner · 6 years ago
  8. fc96437 bpo-33499: Fix pymain_init_pycache_prefix() (GH-8596) by Victor Stinner · 6 years ago
  9. ea68d83 bpo-34170: _PyCoreConfig_Read() defaults to argc=0 (GH-8595) by Victor Stinner · 6 years ago
  10. 9851227 bpo-34170: Rename _PyCoreConfig.unbuffered_stdip (GH-8594) by Victor Stinner · 6 years ago
  11. a4d20b2 bpo-34170: Py_Main() updates config when setting Py_InspectFlag (GH-8593) by Victor Stinner · 6 years ago
  12. b75d7e2 bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591) by Victor Stinner · 6 years ago
  13. 9c18b1a bpo-33089: Add math.dist() for computing the Euclidean distance between two points (GH-8561) by Raymond Hettinger · 6 years ago
  14. 9d57273 bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931) by Serhiy Storchaka · 6 years ago
  15. f1d36d8 bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) by Serhiy Storchaka · 6 years ago
  16. b229b07 Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494) by Sergey Fedoseev · 6 years ago
  17. b7fd738 bpo-34231: PYTHONBREAKPOINT is not documented on python --help (GH-8475) by Stéphane Wirtel · 6 years ago
  18. c6dabe3 bpo-33089: Multidimensional math.hypot() (GH-8474) by Raymond Hettinger · 6 years ago
  19. aee632d Remove some unused code in _pysqlite_query_execute() (GH-8495) by Sergey Fedoseev · 6 years ago
  20. d145775 bpo-34170: Cleanup pymain_read_conf() (GH-8476) by Victor Stinner · 6 years ago
  21. e0d67f1 bpo-34201: Make ndarray.readonly a bool and use stricter tests in test_buffer. (GH-8414) by Serhiy Storchaka · 6 years ago
  22. 7cb7bcf bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic. (GH-8434) by Serhiy Storchaka · 6 years ago
  23. 323748a bpo-34197: Make _csv.Dialect attributes booleans. (GH-8440) by Serhiy Storchaka · 6 years ago
  24. ecf411c bpo-34170: Enhance _PyCoreConfig_Read() (GH-8468) by Victor Stinner · 6 years ago
  25. 60b04c9 bpo-34228: Allow PYTHONTRACEMALLOC=0 (GH-8467) by Victor Stinner · 6 years ago
  26. 96d1e69 bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385) by Ammar Askar · 6 years ago
  27. ee98e7b bpo-34218: Fix a leak in _elementtree.c introduced in GH-6769. (GH-8460) by Serhiy Storchaka · 6 years ago
  28. d3b1919 bpo-34170: Cleanup pymain_run_python() (GH-8455) by Victor Stinner · 6 years ago
  29. 1dc6e39 bpo-34170: Add _Py_InitializeFromConfig() (GH-8454) by Victor Stinner · 6 years ago
  30. 6cf8255 bpo-34217: Use lowercase header for Windows (GH-8453) by erikjanss · 6 years ago
  31. 53b7d4e bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447) by Victor Stinner · 6 years ago
  32. d19d8d5 bpo-34170: Add _PyCoreConfig.isolated (GH-8417) by Victor Stinner · 6 years ago
  33. 02ec92f bpo-29209: Remove old-deprecated features in ElementTree. (GH-6769) by Serhiy Storchaka · 6 years ago
  34. f2626ce bpo-34170: _PyCoreConfig_Read() leaves Py_IsolatedFlag unchanged (GH-8361) by Victor Stinner · 6 years ago
  35. b1147e4 bpo-34170: Rework _PyCoreConfig_Read() to avoid side effect (GH-8353) by Victor Stinner · 6 years ago
  36. fb47bca bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043) by Victor Stinner · 6 years ago
  37. ce75df3 bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. (GH-7911) by ValeriyaSinevich · 6 years ago
  38. 5d4cb54 bpo-34141: Optimized pickling simple non-recursive values. (GH-8318) by Serhiy Storchaka · 6 years ago
  39. 28f0736 bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exception set (GH-8282) by Zackery Spytz · 6 years ago
  40. 961d54c bpo-32430: Rename Modules/Setup.dist to Modules/Setup (GH-8229) by Antoine Pitrou · 6 years ago
  41. 66953f0 Factor-out two substantially identical code blocks. (GH-8219) by Raymond Hettinger · 6 years ago
  42. 5ac9e6e bpo-33597: Reduce PyGC_Head size (GH-7043) by INADA Naoki · 6 years ago
  43. 7762e4d prefix internal sqlite symbols with _pysqlite_ (GH-8215) by Benjamin Peterson · 6 years ago
  44. d6d4432 delete some unused pysqlite forward declarations (GH-8211) by Benjamin Peterson · 6 years ago
  45. 0830858 bpo-34041: Allow creating deterministic functions in Connection.create_function() (GH-8086) by Sergey Fedoseev · 6 years ago
  46. 9b50a7f Make PySimpleQueueType static. (GH-8175) by Benjamin Peterson · 6 years ago
  47. 6cfe45a Make various internal _testbuffer symbols static. (GH-8160) by Benjamin Peterson · 6 years ago
  48. 4629c0d Hide some symbols from _xxsubinterpreters. (GH-8151) by Benjamin Peterson · 6 years ago
  49. cb4bae7 Make two PyModuleDef_Slot symbols static in _testmultiphase. (GH-8147) by Benjamin Peterson · 6 years ago
  50. 3c8aae9 Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127) by Benjamin Peterson · 6 years ago
  51. 97ae32c Make GenericAlias_Type and Generic_Type static. (GH-8076) by Benjamin Peterson · 6 years ago
  52. b4588c2 Don't export pending_threadfunc from _testcapi. (GH-8075) by Benjamin Peterson · 6 years ago
  53. 6dc57e2 bpo-31938: Convert selectmodule.c to Argument Clinic (GH-4265) by Tal Einat · 6 years ago
  54. fdb5a50 bpo-25862: Fix several bugs in the _io module. (GH-8026) by Serhiy Storchaka · 6 years ago
  55. 0cdf5f4 bpo-32568: make select.epoll() and its docs consistent (#7840) by Tal Einat · 6 years ago
  56. 23db935 bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918) by Zackery Spytz · 6 years ago
  57. d2cbfff bpo-25007: Add copy protocol support to zlib compressors and decompressors (GH-7940) by Zackery Spytz · 6 years ago
  58. 4e21100 bpo-33956: update vendored expat to 2.2.5 (GH-7925) by Benjamin Peterson · 6 years ago
  59. 66ecefc Remove tp_print implementation (GH-7857) by jdemeyer · 6 years ago
  60. 9b7cf75 bpo-33916: Fix bz2 and lzma init when called twice (GH-7843) by Victor Stinner · 6 years ago
  61. 44742e9 suppress compiler warnings in _cursesmodule.c (#7860) by Xiang Zhang · 6 years ago
  62. b248e95 Fix compiling error when missing gdbm version macros (GH-7823) by Xiang Zhang · 6 years ago
  63. 00f9edb bpo-33901: Add _gdbm._GDBM_VERSION (GH-7794) by Victor Stinner · 6 years ago
  64. c7f02a9 bpo-33671 / shutil.copyfile: use memoryview() with dynamic size on Windows (#7681) by Giampaolo Rodola · 6 years ago
  65. cb97073 bpo-33630: Fix using of freed memory in old versions of glicb for posix_spawn(). (GH-7685) by Pablo Galindo · 6 years ago
  66. b193fa9 bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (GH-6834) by Carl Meyer · 6 years ago
  67. 6c5a4b3 bpo-33824, bpo-32030: Fix pymain_read_conf() (GH-7712) by Victor Stinner · 6 years ago
  68. d134809 bpo-29456: Fix bugs in unicodedata.normalize: u1176, u11a7 and u11c3 (GH-1958) by Wonsup Yoon · 6 years ago
  69. ab4a198 bpo-33615: Re-enable subinterpreter tests. (#7552) by Eric Snow · 6 years ago
  70. 4a172cc bpo-33671: efficient zero-copy for shutil.copy* functions (Linux, OSX and Win) (#7160) by Giampaolo Rodola · 6 years ago
  71. 4531ec7 bpo-31432: Revert unrelated code changes to _ssl.c and test_ssl (GH-7650) by Ned Deily · 6 years ago
  72. ef24b6c bpo-31432: Clarify ssl CERT_NONE/OPTIONAL/REQUIRED docs. (GH-3530) by Christian Heimes · 6 years ago
  73. 877b232 bpo-33812: Corrected astimezone for naive datetimes. (GH-7578) by Alexander Belopolsky · 6 years ago
  74. 69dccc3 Remove unneeded PyErr_Occurred() check in os_lseek_impl() (GH-7557) by Zackery Spytz · 6 years ago
  75. 1b85c71 bpo-33770: improve base64 exception message for encoded inputs of invalid length (#7416) by Tal Einat · 6 years ago
  76. 7c69c1c update to Unicode 11.0.0 (closes bpo-33778) (GH-7439) by Benjamin Peterson · 6 years ago
  77. 45e4efb bpo-33781: audioop: enhance rounding double as int (GH-7447) by Victor Stinner · 6 years ago
  78. e9e3976 bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381) by Zackery Spytz · 6 years ago
  79. 6379913 bpo-33615: Re-enable a subinterpreter test. (gh-7251) by Eric Snow · 6 years ago
  80. 6854e80 bpo-33724: Use the right format code for int64_t in subinterpreters code. (gh-7330) by Eric Snow · 6 years ago
  81. e905c84 bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146) by pkerling · 6 years ago
  82. 58d1683 bpo-33706: Fix pymain_parse_cmdline_impl() (GH-7283) by Victor Stinner · 6 years ago
  83. a5c4228 bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) by Serhiy Storchaka · 6 years ago
  84. c4653c9 bpo-33622: Add checks for exceptions leaks in the garbage collector. (GH-7126) by Serhiy Storchaka · 6 years ago
  85. 416c1eb bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174) by Yury Selivanov · 6 years ago
  86. 35230d0 bpo-33623: Fix possible SIGSGV when asyncio.Future is created in __del__ (#7080) by Yury Selivanov · 6 years ago
  87. 19de8b3 bpo-33644: Fix signatures of tp_finalize handlers in testing code. (GH-7111) by Serhiy Storchaka · 6 years ago
  88. 17d8830 bpo-32493: Fix uuid.uuid1() on FreeBSD. (GH-7099) by Serhiy Storchaka · 6 years ago
  89. 301e3cc bpo-33622: Fix issues with handling errors in the GC. (GH-7078) by Serhiy Storchaka · 6 years ago
  90. 1179f4b bpo-33583: Add note in PyObject_GC_Resize() doc (GH-7021) by INADA Naoki · 6 years ago
  91. 6655354 bpo-33584: Fix several minor bugs in asyncio. (GH-7003) by Serhiy Storchaka · 6 years ago
  92. 4857543 Fix typo in error message when decoding PYTHONPATH. (GH-6981) by Carl Meyer · 6 years ago
  93. c0ee341 Fix Windows build of Python for latest WinSDK. (GH-6874) by Carl Meyer · 6 years ago
  94. 3ab0136 bpo-32604: Implement force-closing channels. (gh-6937) by Eric Snow · 6 years ago
  95. c2f082e bpo-13631: Fix the order of initialization for readline libedit on macOS. (GH-6915) by Zvezdan Petkovic · 6 years ago
  96. d852142 Replace _PyGC_REFS macros with higher level macros (GH-6852) by INADA Naoki · 6 years ago
  97. 6d2cd90 bpo-32604: Improve subinterpreter tests. (#6914) by Eric Snow · 6 years ago
  98. 55e53c3 Remove an unneeded call into OpenSSL (GH-6887) by Alex Gaynor · 6 years ago
  99. d8dcd57 bpo-33454: Fix arguments parsing in _xxsubinterpreters.channel_close(). (GH-6747) by Serhiy Storchaka · 6 years ago
  100. 67c4801 bpo-32257: Add ssl.OP_NO_RENEGOTIATION (GH-5904) by Christian Heimes · 6 years ago