1. d04661f bpo-33348: parse expressions after * and ** in lib2to3 (GH-6586) by Miss Skeleton (bot) · 4 years, 9 months ago
  2. 69802f6 closes bpo-37675: Use pkgutil.iter_modules to find fixers in a package rather than listdir. (14942) by Miss Islington (bot) · 5 years ago
  3. 0d70227 Fix typos in docs and docstrings (GH-13745) by Xtreak · 5 years ago
  4. 2a58b06 bpo-5028: Fix up rest of documentation for tokenize documenting line (GH-13686) by Anthony Sottile · 5 years ago
  5. 1e36f75 bpo-5028: fix doc bug for tokenize (GH-11683) by Andrew Carr · 5 years ago
  6. 4011d86 bpo-23896: Add a grammar where exec isn't a stmt (#13272) by Batuhan Taşkaya · 5 years ago
  7. 9646630 bpo-36766: Typos in docs and code comments (GH-13116) by penguindustin · 5 years ago
  8. c57e6e2 bpo-35312: Make lib2to3.pgen2.parse.ParseError round-trip pickle-able. (GH-10710) by Anthony Sottile · 6 years ago
  9. b9498e2 bpo-35202: Remove unused imports in Lib directory. (GH-10446) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  10. d4d6013 bpo-16965: 2to3 now rewrites execfile() to open with 'rb'. (GH-8569) by Zackery Spytz · 6 years ago
  11. 10a428b closes bpo-34515: Support non-ASCII identifiers in lib2to3. (GH-8950) by Monson Shao · 6 years ago
  12. 4b8a7f5 Revert "closes bpo-27494: Fix 2to3 handling of trailing comma after a generator expression (GH-3771)" (#8241) by Serhiy Storchaka · 6 years ago
  13. 7a3056f bpo-21446: Update reload fixer to use importlib (GH-8391) by Berker Peksag · 6 years ago
  14. cafaf04 bpo-34108: Fix double carriage return in 2to3 on Windows (#8271) by Jason R. Coombs · 6 years ago
  15. e3a523a bpo-31583: Fix 2to3 for using with --add-suffix option (GH-3758) by Denis Osipov · 6 years ago
  16. c127a86 bpo-11594: Ensure line-endings are respected when using 2to3 (GH-6483) by Aaron Ang · 6 years ago
  17. 7661806 [lib2to3] Make grammar pickling faster (#6491) by Łukasz Langa · 6 years ago
  18. 8f37e84 Add support for all string literals to lib2to3 (#6457) by Zsolt Dollenstein · 6 years ago
  19. f64aae4 Revert "bpo-30406: Make async and await proper keywords (#1669)" (GH-6143) by Jelle Zijlstra · 6 years ago
  20. 74f5687 lib2to3: Add more tests (#6101) by Łukasz Langa · 6 years ago
  21. b51f5de bpo-33064: lib2to3: support trailing comma after *args and **kwargs (#6096) by Łukasz Langa · 6 years ago
  22. 1e17d4a compare with difflib not diff(1) (GH-5450) by Benjamin Peterson · 6 years ago
  23. 14e976e closes bpo-30117: fix lib2to3 ParserIdempotency test (GH-1242) by Eric Appelt · 6 years ago
  24. e325608 remove unused import (#5040) by Benjamin Peterson · 7 years ago
  25. e5f7dcc make PatternCompiler use the packaged grammar if possible (more bpo-24960) (#5034) by Benjamin Peterson · 7 years ago
  26. d11e8e0 correct wording (#4983) by Benjamin Peterson · 7 years ago
  27. 8a58771 bpo-24960: use pkgutil.get_data in lib2to3 to read pickled grammar files (#4977) by Benjamin Peterson · 7 years ago
  28. a489599 bpo-32046: Update 2to3 when converts operator.isCallable(obj). (#4417) by Dong-hee Na · 7 years ago
  29. 0a2abdf bpo-30143: 2to3 now generates a code that uses abstract collection classes (#1262) by Serhiy Storchaka · 7 years ago
  30. ac31770 bpo-30406: Make async and await proper keywords (#1669) by Jelle Zijlstra · 7 years ago
  31. af810b3 closes bpo-27494: Fix 2to3 handling of trailing comma after a generator expression (#3771) by Jakub Stasiak · 7 years ago
  32. 272d888 bpo-29783: Replace codecs.open() with io.open() (#599) by Victor Stinner · 7 years ago
  33. 1b9530c bpo-23894: make lib2to3 recognize f-strings (#1733) by Łukasz Langa · 7 years ago
  34. 0c4aca5 Make rb'' strings work in lib2to3 (#1724) by Łukasz Langa · 7 years ago
  35. 2e576f5 bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) by Serhiy Storchaka · 7 years ago
  36. a6e395d bpo-29869: Allow underscores in numeric literals in lib2to3. (GH-1119) by Nevada Sanchez · 7 years ago
  37. 93b4b47 bpo-28837: Fix lib2to3 handling of map/zip/filter calls when followed with a 'trailer', e.g. zip()[x] (#24) by Stuart Berg · 7 years ago
  38. 5affd23 bpo-29762: More use "raise from None". (#569) by Serhiy Storchaka · 7 years ago
  39. 11fa3c7 bpo-29957: change LBYL key lookup to dict.setdefault (#938) by Michael Selik · 7 years ago
  40. d6debb2 bpo-29919: Remove unused imports found by pyflakes (#137) by Victor Stinner · 7 years ago
  41. bdf6b91 bpo-29776: Use decorator syntax for properties. (#585) by Serhiy Storchaka · 7 years ago
  42. 70d28a1 Remove unused imports. by Serhiy Storchaka · 8 years ago
  43. 3d3e9ff merge 3.5 by Benjamin Peterson · 8 years ago
  44. 41fef63 rm unused import by Benjamin Peterson · 8 years ago
  45. fd1df3f Issue #28394: Merge typo fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  46. d2a584b Issue #28394: Spelling and typo fixes in code comments and changelog by Martin Panter · 8 years ago
  47. fc3f7d5 Remove the debug print that i accidentally left in. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  48. 3a95f45 Remove the debug print that i accidentally left in. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  49. 2832574 Issue #25969: Update the lib2to3 grammar to handle the unpacking by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  50. dbdf029 remove fix_callable - callable() was readded many releases ago. by Gregory P. Smith · 8 years ago
  51. 3b822d6 Issue #25969: Update the lib2to3 grammar to handle the unpacking by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  52. 223f12c Remove 2to3's fix_callable... We reintroduced the callable built-in by Gregory P. Smith · 8 years ago
  53. fa40ca8 issue27985 - fix the incorrect duplicate class name in the lib2to3 by Gregory P. Smith · 8 years ago
  54. 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 8 years ago
  55. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  56. 9719161 Fix indentation (reindent.py). by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  57. dd1c638 lib2to3.pgen3.driver.load_grammar() now creates a stable cache file by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  58. a68c1bc Remove legacy "from __future__ import with_statement" lines. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  59. 627b755 Fix indentation (reindent.py). by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  60. 0c578d6 lib2to3.pgen3.driver.load_grammar() now creates a stable cache file by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  61. 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 8 years ago
  62. 50d4c15 Issue #27030: Merge RE fix from 3.5 by Martin Panter · 8 years ago
  63. d470480 Fix buggy RE “\parrot_example.py”, uncovered by Issue #27030 by Martin Panter · 8 years ago
  64. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  65. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  66. cc20d63 Merge with 3.5 by Terry Jan Reedy · 8 years ago
  67. 823c626 Issue 26911: fix import (other problems remain). by Terry Jan Reedy · 8 years ago
  68. ccd047e Removed unused imports. by Serhiy Storchaka · 8 years ago
  69. a6f26c1 Remove more unused imports in tests. by Serhiy Storchaka · 8 years ago
  70. e437a10 Issue #23277: Remove unused imports in tests. by Serhiy Storchaka · 8 years ago
  71. c7f44aa Issue #23277: Remove more unused sys and os imports. by Serhiy Storchaka · 8 years ago
  72. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 8 years ago
  73. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  74. a051bf3 Issue #26581: Use the first coding cookie on a line, not the last one. by Serhiy Storchaka · 8 years ago
  75. e431d3c Issue #26581: Use the first coding cookie on a line, not the last one. by Serhiy Storchaka · 8 years ago
  76. 4a7c03a Issue #25523: Merge a-to-an corrections from 3.5. by Serhiy Storchaka · 9 years ago
  77. a84f6c3 Issue #25523: Merge a-to-an corrections from 3.4. by Serhiy Storchaka · 9 years ago
  78. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 9 years ago
  79. e56a919 Issue #25523: Merge a-to-an corrections from 3.5 by Martin Panter · 9 years ago
  80. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  81. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  82. 38d3876 Merge 3.5 (Issue #24619) by Yury Selivanov · 9 years ago
  83. 96ec934 Issue #24619: Simplify async/await tokenization. by Yury Selivanov · 9 years ago
  84. d4f4a6d Issue #13938: 2to3 converts StringTypes to a tuple. Patch from Mark Hammond. by Robert Collins · 9 years ago
  85. 8fb307c Issue #24619: New approach for tokenizing async/await. by Yury Selivanov · 9 years ago
  86. 50c72d2 Issue #22064: Improve the misleading message from 2to3 when skipping optional fixers. by Berker Peksag · 9 years ago
  87. 3a81f9b Issue #22064: Improve the misleading message from 2to3 when skipping optional fixers. by Berker Peksag · 9 years ago
  88. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  89. bfbfc8d Removed unintentional trailing spaces in text files. by Serhiy Storchaka · 9 years ago
  90. f4b7a02 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 9 years ago
  91. 82f34ad fix instances of consecutive articles (closes #23221) by Benjamin Peterson · 10 years ago
  92. db9b65d Issue #22823: Use set literals in lib2to3. by Serhiy Storchaka · 10 years ago
  93. 2acbae8 Issue #22173: Update lib2to3 tests to use unittest test discovery. by Zachary Ware · 10 years ago
  94. f23530f Issue #22186: Fix typos in Lib/. by Berker Peksag · 10 years ago
  95. 0654be1 teach 2to3 about 'yield from' by Benjamin Peterson · 10 years ago
  96. 4ab92c8 add matrix multiplication operator support to 2to3 by Benjamin Peterson · 10 years ago
  97. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  98. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  99. 7282ff6 Issue #18960: Fix bugs with Python source code encoding in the second line. by Serhiy Storchaka · 11 years ago
  100. 768c16c Issue #18960: Fix bugs with Python source code encoding in the second line. by Serhiy Storchaka · 11 years ago