1. cebd43f bpo-41054: Simplify resource compilation on Windows (GH-21004) by Miss Islington (bot) · 4 years, 3 months ago
  2. 92f8b48 bpo-41085: Fix array.array.index() on 64-bit Windows (GH-21071) by Miss Islington (bot) · 4 years, 3 months ago
  3. cd69620 Small clean-ups for the random module (GH-21038) (GH-21065) by Miss Islington (bot) · 4 years, 3 months ago
  4. ddd3c46 Improve asyncio.loop.call_soon() documentation (GH-20883) by Miss Islington (bot) · 4 years, 3 months ago
  5. c916c48 bpo-41068: Fix read after write in zipfile for non-ASCII files names. (GH-21040) by Miss Islington (bot) · 4 years, 3 months ago
  6. 5606d55 bpo-26407: Do not mask errors in csv. (GH-20536) by Miss Islington (bot) · 4 years, 3 months ago
  7. 353c4ba bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (GH-20537) by Miss Islington (bot) · 4 years, 3 months ago
  8. f19ed6b bpo-41061: Fix incorrect expressions in hashtable (GH-21028) by Miss Islington (bot) · 4 years, 3 months ago
  9. 9fe5dec bpo-41056: Fix reference to deallocated stack in pathconfig (Coverity) (GH-21013) by Miss Islington (bot) · 4 years, 3 months ago
  10. 8ae5e8e [3.9] bpo-40939: Deprecate PyNode_Compile (GH-21036) by Lysandros Nikolaou · 4 years, 3 months ago
  11. 5b1a311 [3.9] Do not emit deprecation warnings inside CPython for old parser APIs (GH-21025) by Pablo Galindo · 4 years, 3 months ago
  12. 26f6126 bpo-41058: Use source file encoding in pdb.find_function(). (GH-21010) by Miss Islington (bot) · 4 years, 3 months ago
  13. fbf94af bpo-41056: Fix a NULL pointer dereference on MemoryError within the ssl module. (GH-21009) by Miss Islington (bot) · 4 years, 3 months ago
  14. 814b07b [3.9] bpo-41052: Opt out serialization/deserialization for _random.Random (GH-21002). (GH-21030) by Dong-hee Na · 4 years, 3 months ago
  15. 71bb921 [3.9] bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the grammar (GH-21020) (GH-21024) by Lysandros Nikolaou · 4 years, 3 months ago
  16. d301d94 [3.9] bpo-40939: Deprecate the PyParser_SimpleParse* functions (GH-21012) by Lysandros Nikolaou · 4 years, 3 months ago
  17. fd2c8a7 Add link to .pypirc specification (GH-20680) by Miss Islington (bot) · 4 years, 3 months ago
  18. 9862181 bpo-41044: Generate valid PEG python parsers for opt+seq rules (GH-20995) by Miss Islington (bot) · 4 years, 3 months ago
  19. c9f83c1 bpo-40958: Avoid 'possible loss of data' warning on Windows (GH-20970) by Miss Islington (bot) · 4 years, 3 months ago
  20. 7523886 bpo-41040: Fix test_modulefinder. (GH-20991) by Miss Islington (bot) · 4 years, 3 months ago
  21. 1529322 bpo-38377: Fix skip_if_broken_multiprocessing_synchronize() on macOS (GH-20984) by Miss Islington (bot) · 4 years, 3 months ago
  22. 83e54de Improve readability of `formataddr` docstring (GH-20963) by Miss Islington (bot) · 4 years, 3 months ago
  23. a5442b2 [3.9] bpo-40334: Produce better error messages on invalid targets (GH-20106) (GH-20973) by Lysandros Nikolaou · 4 years, 3 months ago
  24. b1e7361 bpo-38377: Add support.skip_if_broken_multiprocessing_synchronize() (GH-20944) (GH-20962) by Victor Stinner · 4 years, 3 months ago
  25. 610a60c bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878) by Inada Naoki · 4 years, 3 months ago
  26. 9a58f03 [3.9] bpo-40637: Do not emit warnings for disabled builtin hashes (GH… (GH-20951) by stratakis · 4 years, 3 months ago
  27. b39d41b bpo-41003: Fix test_copyreg when numpy is installed (GH-20935) (GH-20945) by Victor Stinner · 4 years, 3 months ago
  28. 2c6d6c1 bpo-19569: Add a macro to suppress deprecation warnings (GH-9004) by Miss Islington (bot) · 4 years, 3 months ago
  29. 7795ae8 bpo-40958: Avoid buffer overflow in the parser when indexing the current line (GH-20875) (GH-20919) by Miss Islington (bot) · 4 years, 3 months ago
  30. 3cf8094 bpo-40993: Don't run Travis CI coverage on PRs (GH-20916) by Miss Islington (bot) · 4 years, 3 months ago
  31. 097b8b6 bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20888) by Miss Islington (bot) · 4 years, 3 months ago
  32. bc996c6 bpo-38488: Upgrade bundled versions of pip & setuptools (GH-20491) by Miss Islington (bot) · 4 years, 3 months ago
  33. b498c7f bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889) by Miss Islington (bot) · 4 years, 3 months ago
  34. 9a0624a bpo-40448: ensurepip: Do not use cache (GH-19812) by Miss Islington (bot) · 4 years, 3 months ago
  35. 2ad799f bpo-37556 Extend help to include latest overrides (GH-14701) by Miss Islington (bot) · 4 years, 3 months ago
  36. b87453f bpo-34226: fix cgi.parse_multipart without content_length (GH-8530) by Miss Islington (bot) · 4 years, 3 months ago
  37. bab0833 bpo-40910: PyConfig_Clear() clears _orig_argv (GH-20886) by Miss Islington (bot) · 4 years, 3 months ago
  38. 30b59fd [3.9] Improve readability and style in parser files (GH-20884) (GH-20885) by Pablo Galindo · 4 years, 3 months ago
  39. 145fa86 [3.9] Include soft keywords in keyword.py (GH-20877). (GH-20880) by Pablo Galindo · 4 years, 3 months ago
  40. 8a34690 [3.9] bpo-40924: Remove protocol for supplying Traversable objects from loaders (GH-20820) by Jason R. Coombs · 4 years, 3 months ago
  41. 83cd968 bpo-30064: Fix slow asyncio sock test (GH-20868) by Miss Islington (bot) · 4 years, 3 months ago
  42. 37c9fc5 Some reformatting (suggested by Black) and minor factoring. (GH-20865) (GH-20866) by Miss Islington (bot) · 4 years, 3 months ago
  43. 55c1d21 bpo-40855: Fix ignored mu and xbar parameters (GH-20835) (#GH-20862) by Miss Islington (bot) · 4 years, 3 months ago
  44. bda4cc8 [3.9] bpo-37674: Tweak imp module deprecation note in the docs (GH-20480) (GH-20859) by Miss Islington (bot) · 4 years, 3 months ago
  45. f1534d0 Minor code clean-ups (GH-20838) (GH-20858) by Miss Islington (bot) · 4 years, 3 months ago
  46. c932f5c bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827) by Miss Islington (bot) · 4 years, 3 months ago
  47. 94bb4b7 bpo-40834: Fix truncate when sending str object with channel (GH-20555) by Miss Islington (bot) · 4 years, 3 months ago
  48. 166d723 bpo-40164: Update Windows OpenSSL to 1.1.1g (GH-20834) by Miss Islington (bot) · 4 years, 3 months ago
  49. f919179 bpo-40964: disable remote IMAP tests (GH-20836) by Christian Heimes · 4 years, 3 months ago
  50. ee3f7fe bpo-40955: Fix memory leak in subprocess module (GH-20825) by Miss Islington (bot) · 4 years, 3 months ago
  51. 2c0a59b Update lexical_analysis.rst (GH-17508) by Miss Islington (bot) · 4 years, 3 months ago
  52. 3782497 [3.9] bpo-40939: Fix test_keyword for the old parser (GH-20814) by Pablo Galindo · 4 years, 3 months ago
  53. dc40105 bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807) (GH-20813) by Victor Stinner · 4 years, 3 months ago
  54. 2f46c65 bpo-34401: Fix test_gdb for HP GDB version string (GH-20804) by Miss Islington (bot) · 4 years, 3 months ago
  55. 961edf7 bpo-40939: Generate keyword.py using the new parser (GH-20800) by Miss Islington (bot) · 4 years, 3 months ago
  56. f6428ba Collections module reformatting and minor code refactoring (GH-20772) (GH-20798) by Miss Islington (bot) · 4 years, 3 months ago
  57. e3ce3bb bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769) by Miss Islington (bot) · 4 years, 3 months ago
  58. 18e07ba bpo-40895: Update weakref documentation to remove old warnings (GH-20687) by Miss Islington (bot) · 4 years, 3 months ago
  59. af69325 bpo-40927: Fix test_binhex when run twice (GH-20764) (GH-20789) by Victor Stinner · 4 years, 3 months ago
  60. 4a4f660 bpo-40826: Fix test_repl.test_close_stdin() on Windows (GH-20779) (GH-20785) by Victor Stinner · 4 years, 3 months ago
  61. 9419158 bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set yet. (GH-20273) (GH-20782) by Miss Islington (bot) · 4 years, 3 months ago
  62. 3b97d1b bpo-36543: Revert "bpo-36543: Remove the xml.etree.cElementTree module." (GH-20117) (GH-20780) by Miss Islington (bot) · 4 years, 3 months ago
  63. d55ed7b Raise specialised syntax error for invalid lambda parameters (GH-20776) by Miss Islington (bot) · 4 years, 3 months ago
  64. 73b728a [3.9] bpo-34003: Re-add versionchanged entry in csv docs (GH-20657) (GH-20770) by Miss Islington (bot) · 4 years, 3 months ago
  65. 6c645cb Post 3.9.0b3 by Łukasz Langa · 4 years, 3 months ago
  66. b484871 Python 3.9.0b3 by Łukasz Langa · 4 years, 3 months ago
  67. ce5e6f0 [3.9] bpo-40924: Revert "bpo-39791 native hooks for importlib.resources.files (GH-20576)" (#20760) by Łukasz Langa · 4 years, 3 months ago
  68. 6cb24a0 bpo-40684: Fix make install for platlibdir=lib64 (GH-20736) by Miss Islington (bot) · 4 years, 3 months ago
  69. 1a819ca Remove reference to 3.7 and 3.8 backports. (GH-20754) (#20755) by Miss Islington (bot) · 4 years, 3 months ago
  70. 459cb12 Post 3.9.0b2 by Łukasz Langa · 4 years, 4 months ago
  71. 8f1f416 Merge tag 'v3.9.0b2' into 3.9 by Łukasz Langa · 4 years, 4 months ago
  72. 299d3d1 Minor improvement to the namedtuple implementation (GH-20741) (GH-20742) by Miss Islington (bot) · 4 years, 4 months ago
  73. b155381 bpo-24914: mention Python supports multiple paradigms in the FAQ (GH-20658) (GH-20737) by Miss Islington (bot) · 4 years, 4 months ago
  74. 0b1a1c8 Python 3.9.0b2 by Łukasz Langa · 4 years, 4 months ago
  75. 3dc4428 Add multicore support to deccheck.py. (GH-20731) by Miss Islington (bot) · 4 years, 4 months ago
  76. ecdd28c Remove deleted libmpdec header from the Visual Studio build machinery. (GH-20730) by Miss Islington (bot) · 4 years, 4 months ago
  77. 8175064 bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-20605) (GH-20725) by Victor Stinner · 4 years, 4 months ago
  78. 298c8c8 bpo-40861: Enable optimizations when building liblzma (GH-20724) by Miss Islington (bot) · 4 years, 4 months ago
  79. dedaac0 bpo-40910: Export Py_GetArgcArgv() function (GH-20721) (GH-20723) by Victor Stinner · 4 years, 4 months ago
  80. 1220a47 bpo-33187: Document 3.9 changes to xml.etree.ElementInclude.include (GH-20438) by Miss Islington (bot) · 4 years, 4 months ago
  81. 60edee8 Update macOS installer welcome files for 3.9.0 beta (GH-20719) by Ned Deily · 4 years, 4 months ago
  82. 2b33cc3 [3.9] Remove PEG-specific syntax error check in the old parser (GH-20717) by Pablo Galindo · 4 years, 4 months ago
  83. 8df4f39 bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser (GH-20697) by Miss Islington (bot) · 4 years, 4 months ago
  84. 66605d1 allow macOS installer builds to package pre-built html docs (GH-20715) by Miss Islington (bot) · 4 years, 4 months ago
  85. 3deded9 Deny eval() direct access to builtins (GH-20713) (GH-20714) by Miss Islington (bot) · 4 years, 4 months ago
  86. be5ed59 bpo-22021: Update root_dir and base_dir documentation in shutil (GH-10367) by Miss Islington (bot) · 4 years, 4 months ago
  87. 1e72fb2 bpo-40741: Update macOS installer to use SQLite 3.32.2. (GH-20705) by Miss Islington (bot) · 4 years, 4 months ago
  88. 9cf1be4 bpo-39791 native hooks for importlib.resources.files (GH-20576) by Miss Islington (bot) · 4 years, 4 months ago
  89. 6440911 bpo-40904: Fix segfault in the new parser with f-string containing yield statements with no value (GH-20701) by Miss Islington (bot) · 4 years, 4 months ago
  90. 71f5016 bpo-39791: Support file systems that cannot support non-ascii filenames (skipping tests in that case). (GH-20681) by Miss Islington (bot) · 4 years, 4 months ago
  91. 1d711f2 bpo-40724: Fix return type of test helper function heapctypewithbuffer_releasebuffer() (GH-20685) (GH-20690) by Miss Islington (bot) · 4 years, 4 months ago
  92. 1e4fa91 bpo-40724: Support setting buffer slots from type specs (GH-20648) (GH-20683) by Miss Islington (bot) · 4 years, 4 months ago
  93. 90ee51f bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649) by Miss Islington (bot) · 4 years, 4 months ago
  94. 18f1226 Refactor scripts in Tools/peg_generator/scripts (GH-20401) by Miss Islington (bot) · 4 years, 4 months ago
  95. d5e7348 bpo-40862: Raise TypeError when const is given to argparse.BooleanOptionalAction (GH-20623) (GH-20664) by Miss Islington (bot) · 4 years, 4 months ago
  96. 15fec56 bpo-40880: Fix invalid read in newline_in_string in pegen.c (GH-20666) by Miss Islington (bot) · 4 years, 4 months ago
  97. 79e6c15 bpo-40883: Fix memory leak in fstring_compile_expr in parse_string.c (GH-20667) by Miss Islington (bot) · 4 years, 4 months ago
  98. a4fa9a9 bpo-39791: Refresh importlib.metadata from importlib_metadata 1.6.1. (GH-20659) (GH-20661) by Miss Islington (bot) · 4 years, 4 months ago
  99. cdc3d9c Fix missing FloatOperation in EXTRA_FUNCTIONALITY path. (GH-20655) (#20660) by Miss Islington (bot) · 4 years, 4 months ago
  100. 83bff88 bpo-40874: Update to libmpdec-2.5.0 (GH-20652) by Miss Islington (bot) · 4 years, 4 months ago