1. f51a466 bpo-23855: Add missing NULL checks for malloc() in _msi.c (GH-9038) by Miss Islington (bot) · 7 years ago
  2. bf2bd8f bpo-25750: fix refcounts in type_getattro() (GH-6118) (GH-9091) by Victor Stinner · 7 years ago
  3. 9734024 bpo-26544: Get rid of dependence from distutils in platform. (GH-8356) (GH-8952) by Miss Islington (bot) · 7 years ago
  4. 7056ca8 bpo-34530: Fix distutils find_executable() (GH-9049) (GH-9058) by Victor Stinner · 7 years ago
  5. 30af2e7 bpo-34500: Fix ResourceWarning in difflib.py (GH-8926) by Mickaël Schoentgen · 7 years ago
  6. 71f2dad [2.7] Fix struct sequence glossary entry grammar (GH-9030) by Zachary Ware · 7 years ago
  7. 5d594f3 bpo-34007: Skip traceback tests if the Program Counter is not available. (GH-9018) by Miss Islington (bot) · 7 years ago
  8. d8b103b closes bpo-34540: Convert shutil._call_external_zip to use subprocess rather than distutils.spawn. (GH-8985) by Benjamin Peterson · 7 years ago
  9. 491740f [2.7] bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks (GH-8864) by Tal Einat · 7 years ago
  10. 032e85f bpo-34491: Add missing Py_DECREF() in _bsddb's DB_join() (GH-8909) by Zackery Spytz · 7 years ago
  11. 67dafd5 [2.7] Issue GH-18560: Fix potential NULL pointer dereference in sum(). (GH-8892) by Benjamin Peterson · 7 years ago
  12. 45ee452 closes bpo-34474: Python/bltinmodule.c: Add missing NULL check in builtin_sum_impl() (GH-8872) by Miss Islington (bot) · 7 years ago
  13. ea21206 closes bpo-34477: Objects/typeobject.c: Add missing NULL check to type_init() (GH-8876) by Miss Islington (bot) · 7 years ago
  14. 5c437d6 Make it more clear that setUpClass runs before each class, not "class run" (GH-8844) by Miss Islington (bot) · 7 years ago
  15. 5223ce2 [2.7] bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (GH-8852) (GH-8858) by Alexey Izbyshev · 7 years ago
  16. eb9a1c0 [2.7] bpo-34400: Fix more undefined behavior in parsetok.c (GH-8833). (GH-8849) by Zackery Spytz · 7 years ago
  17. 95f9e14 [2.7] bpo-30411: Use --git-dir instead of -C to make git work under version below 1.8.5. (GH-8744) (GH-8838) by Xiang Zhang · 7 years ago
  18. ae1f012 bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Realloc(). (GH-8785) by Sergey Fedoseev · 7 years ago
  19. 2ec530c [2.7] bpo-34391: Fix ftplib test for TLS 1.3 (GH-8787) (GH-8791) by Christian Heimes · 7 years ago
  20. 00aebab closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439) by Miss Islington (bot) · 7 years ago
  21. 1f34aec [2.7] bpo-34399: 2048 bits RSA keys and DH params (GH-8762) (GH-8765) by Christian Heimes · 7 years ago
  22. d1c5e27 [2.7] bpo-34272: Move argument parsing tests from test_capi to test_getargs2. (GH-8567). (GH-8691) by Serhiy Storchaka · 7 years ago
  23. 7e4ff97 [2.7] bpo-34236: Remove mistakenly backported Test6012 in test_capi.py. (GH-8681) by Zackery Spytz · 7 years ago
  24. 9027502 [2.7] bpo-34273: Change 'Fixed point' to 'Fixed-point notation'. (GH-8673) by Terry Jan Reedy · 7 years ago
  25. 396afbf Fix docstring of Profiler class (GH-8651) by Miss Islington (bot) · 7 years ago
  26. 24a54da [2.7] bpo-34275: Make IDLE calltips always visible on Mac. (GH-8639) (GH-8644) by Terry Jan Reedy · 7 years ago
  27. dd4d8b4 Fix compilation warnings on Windows (GH-8627) by Victor Stinner · 7 years ago
  28. 6a6b248 bpo-29565: Fix compilation for C89 (GH-8626) by Victor Stinner · 7 years ago
  29. 3243f8c bpo-29565: Corrected ctypes passing of large structs by value on Windows AMD64 (GH-168) (GH-8625) by Victor Stinner · 7 years ago
  30. 894940b [2.7] bpo-34120: fix IDLE freezing after closing dialogs (GH-8603) by Tal Einat · 7 years ago
  31. 48c8bf2 [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479) by Serhiy Storchaka · 7 years ago
  32. dc9039d bpo-27671: Update FAQ about why len is function (GH-8432) by Miss Islington (bot) · 7 years ago
  33. 5e980f0 [2.7] Use 'for example' instead of 'in other words' in compound statement doc (GH-8401) by Andrés Delfino · 7 years ago
  34. 2bea771 bpo-34229: Check start and stop of slice object to be long when they are not int in PySlice_GetIndices (GH-8480) by Xtreak · 7 years ago
  35. 1c8f655 bpo-28677: Improve phrasing of when instance attribute is referenced (GH-6208) by Miss Islington (bot) · 7 years ago
  36. 613cbf3 Fix site module documentation. (GH-8441) by Miss Islington (bot) · 7 years ago
  37. f7e60a6 [2.7] bpo-33468: Add try-finally contextlib.contextmanager example (GH-7816) (GH-8427) by Tal Einat · 7 years ago
  38. fbcb6fa bpo-34189: Remove a file backported by accident. (GH-8419) by Serhiy Storchaka · 7 years ago
  39. 7868426 bpo-33336, imaplib: Legalize MOVE command (GH-6569) by Miss Islington (bot) · 7 years ago
  40. 46cb5fd [2.7] bpo-34189: Add simple tests for new Tk widget options. (GH-8396). (GH-8400) by Serhiy Storchaka · 7 years ago
  41. 041a4ee bpo-25943: Check for integer overflow in bsddb's DB_join(). (GH-8392) by Zackery Spytz · 7 years ago
  42. 3252205 bpo-25943: Fix potential heap corruption in bsddb's _db_associateCallback() (GH-8337) by Zackery Spytz · 7 years ago
  43. c5bc6e4 [2.7] Enable GUI testing on Travis Linux builds via Xvfb (GH-7887) by Zachary Ware · 7 years ago
  44. 1fb24b6 Clarify ValueError's broad applicability (GH-8313) (GH-8316) by Miss Islington (bot) · 7 years ago
  45. fc153d1 [2.7] bpo-34068: iobase_close could call PyObject_SetAttrString with an exception set (GH-8282). (GH-8312) (GH-8314) by Serhiy Storchaka · 7 years ago
  46. a45fa39 bpo-34080: Fix a memory leak in the compiler. (GH-8222) by Miss Islington (bot) · 7 years ago
  47. ef19fd2 [2.7] bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192). (GH-8255) by Serhiy Storchaka · 7 years ago
  48. 6f036bb [2.7] bpo-34031: fix incorrect usage of self.fail in two tests (GH-8091) (#8225) by Tal Einat · 7 years ago
  49. dc39a59 [2.7] prefix internal sqlite symbols with _pysqlite_ (GH-8215). (GH-8217) by Benjamin Peterson · 7 years ago
  50. 695ecd9 [2.7] delete some unused pysqlite forward declarations (GH-8211). (GH-8214) by Benjamin Peterson · 7 years ago
  51. 789f95a [2.7] Fixed several assertTrue() that were intended to be assertEqual(). (GH-8191) (GH-8202) by Serhiy Storchaka · 7 years ago
  52. b1e6e56 bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684). (GH-8193) (GH-8196) by Serhiy Storchaka · 7 years ago
  53. 3a98ddd bpo-33888: Use CPython instead of Python in the FAQ (GH-7767) by Miss Islington (bot) · 7 years ago
  54. 3707dfa [2.7] closes bpo-34050: Fix link in SSL docs (GH-8173). (GH-8179) by Benjamin Peterson · 7 years ago
  55. ad0fc8d [2.7] bpo-33804: Document that the argument for io.TextIOBase.read() is optional (GH-7510). (GH-8171) by Andrés Delfino · 7 years ago
  56. 8902a1d [2.7] bpo-34019: Fix wrong arguments for Opera Browser (GH-8047) (#8126) by Pablo Galindo · 7 years ago
  57. 7829bba [2.7] bpo-33899: Make tokenize module mirror end-of-file is end-of-line behavior (GH-7891) (#8133) by Ammar Askar · 7 years ago
  58. 9720f60 [2.7] bpo-33720: Improve tests for the stack overflow in marshal.loads(). (GH-7336). (GH-8107) by Serhiy Storchaka · 7 years ago
  59. bfee590 Don't export pending_threadfunc from _testcapi. (GH-8075) by Miss Islington (bot) · 7 years ago
  60. 292ce15 bpo-34018: Doc'd that type names of SQLite converters are case-insensitive. (GH-8042) (GH-8066) by Miss Islington (bot) · 7 years ago
  61. 53fafaf bpo-33735: Fix test_multiprocessing random failure (GH-8059) (GH-8061) by Victor Stinner · 7 years ago
  62. 9b84cc8 [2.7] bpo-33974: Fix passing special characters to ttk widgets. (GH-7986) (GH-8021) by Serhiy Storchaka · 7 years ago
  63. 0464de0 [2.7] bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918). (GH-8013) by Zackery Spytz · 7 years ago
  64. 11ba050 Update 2.7 doc templates for 3.7.0 (GH-7996) by Ned Deily · 7 years ago
  65. bcb1ac8 bpo-33958: Doc: Remove unused variable in example (GH-7927) by Miss Islington (bot) · 7 years ago
  66. 468f97b [2.7] closes bpo-33956: update vendored expat to 2.2.5 (GH-7925) by Benjamin Peterson · 7 years ago
  67. f79386f bpo-29514: Make magic number test work for candidates (GH-7946) by Ned Deily · 7 years ago
  68. 5430c14 [2.7] bpo-33873: Backport regrtest from master (GH-7936) by Victor Stinner · 7 years ago
  69. 16137fe bpo-27780: Make pgen.c C89 compliant (GH-7915) by Zachary Ware · 7 years ago
  70. 7820973 [2.7] bpo-33952: Fix typo in str.upper() documentation (GH-7898) (GH-7905) by Tal Einat · 7 years ago
  71. aa770b7 [2.7] bpo-33943: Add references in the docs for logging.basicConfig (GH-7858) (GH-7902) by Tal Einat · 7 years ago
  72. b18f098 bpo-33711: Fix license generation error in installer build script (GH-7241) by native-api · 7 years ago
  73. 2c11e23 [2.7] bpo-33885: Replace "hook function" with "callable" (GH-7765). (#7885) by Andrés Delfino · 7 years ago
  74. 3e3157b bpo-33887: Add TOC to Design and History FAQ(GH-7766) by Miss Islington (bot) · 7 years ago
  75. 9ee9efa make pgen.c C89 compliant again (GH-7870) by Benjamin Peterson · 7 years ago
  76. 482fac7 [2.7] properly free memory in pgen. (GH-7869) (closes bpo-27780 by Benjamin Peterson · 7 years ago
  77. 1c9a72c [2.7] bpo-33877: Remove UNIX qualification for running complete programs (GH-7744) by Andrés Delfino · 7 years ago
  78. 319cfb5 bpo-30345: Add -g to LDFLAGS for LTO (GH-7709) (GH-7825) by Victor Stinner · 7 years ago
  79. 7b383a5 bpo-33931: Fix building using PC\VS9.0\build.bat -e (GH-7844) by Anselm Kruis · 7 years ago
  80. f291888 bpo-33901: Fix test_gdbm for gdbm 1.15 (GH-7798) (GH-7818) by Victor Stinner · 7 years ago
  81. b2dd5f1 bpo-33717: set terse to True when calling platform.platform in test.pythoninfo (GH-7797) (GH-7803) by Miss Islington (bot) · 7 years ago
  82. 9c13178 Fix four spelling typos in documentation (GH-7753) by Xtreak · 7 years ago
  83. 60c888d bpo-33892: Doc: Use gender neutral words (GH-7770) by Andrés Delfino · 7 years ago
  84. c488558 [2.7] bpo-33856: Add "help" to the welcome message of IDLE (GH-7755) (GH-7758) by Terry Jan Reedy · 7 years ago
  85. 80c51c4 bpo-33571: Improve the glossary description for '...' prompt (GH-6971) by Miss Islington (bot) · 7 years ago
  86. bb3b365 Improve the grammar in the glossary item for `list` (GH-7727) by Miss Islington (bot) · 7 years ago
  87. 70c3d58 Fix compiler warnings on Windows (GH-7729) by Victor Stinner · 7 years ago
  88. e36f94f bpo-32962: Backport python-gdb.py and test_gdb.py from master (GH-7726) by Victor Stinner · 7 years ago
  89. 184e8ed [2.7] bpo-33852: Remove misplaced parentheses around 'list'. (GH-7672) (#7716) by Andrés Delfino · 7 years ago
  90. 1889c4c bpo-29456: Fix bugs in unicodedata.normalize: u1176, u11a7 and u11c3 (GH-1958) (GH-7704) by Xiang Zhang · 7 years ago
  91. fc8ea20 [2.7] bpo-33828: Clarify auto-numbering is not available to string.Formatter. (GH-7668) (GH-7676) by Xiang Zhang · 7 years ago
  92. 42ca836 bpo-33845: Update Doc\make.bat on 2.7 to bring it on par to master version (GH-7667) by Andrés Delfino · 7 years ago
  93. 4fde701 bpo-23404: Update/sync What's New files for 3.6/3.5/2.7 (GH-7624) by Ned Deily · 7 years ago
  94. 48712e2 Remove hyphens from phrase "picks up where it left off" (GH-7410) by Mariatta · 7 years ago
  95. f01b951 bpo-33766: Document that end of file or string is a newline (GH-7383) by Miss Islington (bot) · 7 years ago
  96. f6645ef bpo-28222: Don't fail if pygments is not available (GH-7564) by Zachary Ware · 7 years ago
  97. b4f8bc5 bpo-33718: regrtest: use "xxx then yyy" result if re-run (GH-7521) (GH-7562) by Victor Stinner · 7 years ago
  98. 4e6bd24 bpo-11874: fix assertion failure in argparse metavar handling (GH-1826) by Miss Islington (bot) · 7 years ago
  99. 458ed1b [2.7] Add version change for OpenSSL 1.1.0 compatibility (GH-7541) by Mayank Singhal · 7 years ago
  100. 2399915 [2.7] bpo-33751: Fix test_file. (GH-7378) (GH-7445) by Serhiy Storchaka · 7 years ago