1. 3b822d6 Issue #25969: Update the lib2to3 grammar to handle the unpacking by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  2. 2832574 Issue #25969: Update the lib2to3 grammar to handle the unpacking by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  3. dbdf029 remove fix_callable - callable() was readded many releases ago. by Gregory P. Smith · 8 years ago
  4. 223f12c Remove 2to3's fix_callable... We reintroduced the callable built-in by Gregory P. Smith · 8 years ago
  5. fa40ca8 issue27985 - fix the incorrect duplicate class name in the lib2to3 by Gregory P. Smith · 8 years ago
  6. 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 8 years ago
  7. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  8. dd1c638 lib2to3.pgen3.driver.load_grammar() now creates a stable cache file by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  9. a68c1bc Remove legacy "from __future__ import with_statement" lines. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  10. 0c578d6 lib2to3.pgen3.driver.load_grammar() now creates a stable cache file by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  11. 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 8 years ago
  12. 50d4c15 Issue #27030: Merge RE fix from 3.5 by Martin Panter · 8 years ago
  13. d470480 Fix buggy RE “\parrot_example.py”, uncovered by Issue #27030 by Martin Panter · 8 years ago
  14. cc20d63 Merge with 3.5 by Terry Jan Reedy · 8 years ago
  15. 823c626 Issue 26911: fix import (other problems remain). by Terry Jan Reedy · 8 years ago
  16. a6f26c1 Remove more unused imports in tests. by Serhiy Storchaka · 8 years ago
  17. e437a10 Issue #23277: Remove unused imports in tests. by Serhiy Storchaka · 8 years ago
  18. c7f44aa Issue #23277: Remove more unused sys and os imports. by Serhiy Storchaka · 8 years ago
  19. 38d3876 Merge 3.5 (Issue #24619) by Yury Selivanov · 9 years ago
  20. 96ec934 Issue #24619: Simplify async/await tokenization. by Yury Selivanov · 9 years ago
  21. d4f4a6d Issue #13938: 2to3 converts StringTypes to a tuple. Patch from Mark Hammond. by Robert Collins · 9 years ago
  22. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  23. 2acbae8 Issue #22173: Update lib2to3 tests to use unittest test discovery. by Zachary Ware · 10 years ago
  24. f23530f Issue #22186: Fix typos in Lib/. by Berker Peksag · 10 years ago
  25. 0654be1 teach 2to3 about 'yield from' by Benjamin Peterson · 10 years ago
  26. 4ab92c8 add matrix multiplication operator support to 2to3 by Benjamin Peterson · 10 years ago
  27. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 10 years ago
  28. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 10 years ago
  29. 6bdd986 #10712: 2to3 has a new "asserts" fixer that replaces deprecated names of unittest methods. by Ezio Melotti · 11 years ago
  30. 8bdc130 Issue #19592: Use specific asserts in lib2to3 tests. by Serhiy Storchaka · 11 years ago
  31. 1eadd6a Issue #19592: Use specific asserts in lib2to3 tests. by Serhiy Storchaka · 11 years ago
  32. 1322f9e Issue #18037: Do not escape '\u' and '\U' in raw strings. by Serhiy Storchaka · 11 years ago
  33. 5e59676 Issue #18037: Do not escape '\u' and '\U' in raw strings. by Serhiy Storchaka · 11 years ago
  34. 026af2a Issue #18037: 2to3 now escapes '\u' and '\U' in native strings. by Serhiy Storchaka · 11 years ago
  35. def0a4c Issue #18037: 2to3 now escapes '\u' and '\U' in native strings. by Serhiy Storchaka · 11 years ago
  36. b3b0720 merge 3.3 (#19115) by Benjamin Peterson · 11 years ago
  37. 3103631 fix duplicate test names (closes #19115) by Benjamin Peterson · 11 years ago
  38. 9353494 Issue #18873: The tokenize module, IDLE, 2to3, and the findnocoding.py script by Serhiy Storchaka · 11 years ago
  39. dafea85 Issue #18873: The tokenize module, IDLE, 2to3, and the findnocoding.py script by Serhiy Storchaka · 11 years ago
  40. e0c6916 #18741: merge with 3.3. by Ezio Melotti · 11 years ago
  41. b5bc353 #18741: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  42. ad28c7f Issue #16706: get rid of os.error by Andrew Svetlov · 12 years ago
  43. 448e81b add fixer for reload() -> imp.reload() (closes #11797)\n\nPatch by Laurie Clark-Michalek and Berker Peksag by Benjamin Peterson · 12 years ago
  44. 139891b merge 3.2 (#16573) by Benjamin Peterson · 12 years ago
  45. 57af387 enumerate only requires an iterable (closes #16573) by Benjamin Peterson · 12 years ago
  46. 1a5e5de remove get_prefix and set_prefix (#13248) by Benjamin Peterson · 12 years ago
  47. d311374 Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode. by Antoine Pitrou · 12 years ago
  48. f47b20f Fix use of deprecated assertRegexpMatches method. by Georg Brandl · 12 years ago
  49. a127ecb import re for the previous commit. by Gregory P. Smith · 12 years ago
  50. 9903c70 re.escape os.sep so that \ is interpreted properly in the regex. by Gregory P. Smith · 12 years ago
  51. 93b98ca Issue #13930: fix a / to use os.sep so that the test works on Windows. by Gregory P. Smith · 12 years ago
  52. 58f23ff Issue #13930: Adds ability for 2to3 to write its output to a different by Gregory P. Smith · 12 years ago
  53. 78f89d8 - Issue #11250: Back port fix from 3.3 branch, so that 2to3 can handle files by Barry Warsaw · 13 years ago
  54. 548c054 Stop trying to write into the stdlib during lib2to3 tests (#12331). by Éric Araujo · 13 years ago
  55. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  56. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  57. 3b59f33 merge 3.1 by Benjamin Peterson · 13 years ago
  58. 49d7149 transform izip_longest #11424 by Benjamin Peterson · 13 years ago
  59. 76f05b7 Merged revisions 87002 via svnmerge from by Benjamin Peterson · 14 years ago
  60. e2bb4eb Merged revisions 85551,86156-86157,86464 via svnmerge from by Martin v. Löwis · 14 years ago
  61. b1cb105 revert changes in inappropiate branch by Benjamin Peterson · 14 years ago
  62. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  63. 4231173 revert change in inappropiate branch by Benjamin Peterson · 14 years ago
  64. 1f7fffb #2830: add html.escape() helper and move cgi.escape() uses in the standard library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning. by Georg Brandl · 14 years ago
  65. b0871ca Merged revisions 85510 via svnmerge from by Benjamin Peterson · 14 years ago
  66. f37eb3a Merged revisions 83852-83853,83857,84042,84216,84274-84276,84375,85388,85478,85506-85508 via svnmerge from by Benjamin Peterson · 14 years ago
  67. 68c80ed Merged revisions 83845 via svnmerge from by Benjamin Peterson · 14 years ago
  68. 4eb5fa5 Merged revisions 82779,82855,83740,83789-83791,83797-83801,83803,83811,83827,83844 via svnmerge from by Benjamin Peterson · 14 years ago
  69. 1b84b5f Merged revisions 82542 via svnmerge from by Benjamin Peterson · 14 years ago
  70. 766f5d9 Merged revisions 81478,82530-82531 via svnmerge from by Benjamin Peterson · 14 years ago
  71. c9e833f Merged revisions 80936 via svnmerge from by Benjamin Peterson · 14 years ago
  72. 8d26b0b Merged revisions 80934 via svnmerge from by Benjamin Peterson · 14 years ago
  73. 5fbccff Merged revisions 79327 via svnmerge from by Benjamin Peterson · 14 years ago
  74. 0af9398 Merged revisions 79306,79311,79325 via svnmerge from by Benjamin Peterson · 14 years ago
  75. 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 14 years ago
  76. 3e56dbe Merged revisions 78684 via svnmerge from by Benjamin Peterson · 14 years ago
  77. 2005281 Merged revisions 78683 via svnmerge from by Benjamin Peterson · 14 years ago
  78. b61a04d Merged revisions 78410 via svnmerge from by Benjamin Peterson · 14 years ago
  79. 5455109 Merged revisions 78408 via svnmerge from by Benjamin Peterson · 14 years ago
  80. 04cace6 Merged revisions 78403 via svnmerge from by R. David Murray · 14 years ago
  81. 378c0cf Merged revisions 78351 via svnmerge from by R. David Murray · 14 years ago
  82. 5577eaa Merged revisions 77848 via svnmerge from by Martin v. Löwis · 14 years ago
  83. 16a060d Merged revisions 77846 via svnmerge from by Martin v. Löwis · 14 years ago
  84. 9207804 Merged revisions 77163 via svnmerge from by Benjamin Peterson · 14 years ago
  85. 2591d21 Merged revisions 77160 via svnmerge from by Benjamin Peterson · 14 years ago
  86. d56a5d7 Merged revisions 77103,77105-77106 via svnmerge from by Benjamin Peterson · 14 years ago
  87. 60a9c69 fix test on py3 by Benjamin Peterson · 14 years ago
  88. ffa94b0 Merged revisions 77102 via svnmerge from by Benjamin Peterson · 14 years ago
  89. 39778f6 Merged revisions 76518 via svnmerge from by Benjamin Peterson · 15 years ago
  90. 2021100 Merged revisions 76259,76326,76376-76377,76430,76471,76517 via svnmerge from by Benjamin Peterson · 15 years ago
  91. e80b51f Merged revisions 76063,76068 via svnmerge from by Benjamin Peterson · 15 years ago
  92. 42e83e9 Merged revisions 76064,76066-76067 via svnmerge from by Benjamin Peterson · 15 years ago
  93. d9af52b Merged revisions 76062 via svnmerge from by Benjamin Peterson · 15 years ago
  94. 784935f Merged revisions 74135 via svnmerge from by Benjamin Peterson · 15 years ago
  95. dd6a4ed merge 2to3 improvments by Benjamin Peterson · 15 years ago
  96. c883265 Merged revisions 74117,74123 via svnmerge from by Benjamin Peterson · 15 years ago
  97. 3059b00 Merged revisions 74114 via svnmerge from by Benjamin Peterson · 15 years ago
  98. 7313712 Merged revisions 73727 via svnmerge from by Benjamin Peterson · 15 years ago
  99. 286a0d2 Merged revisions 73725 via svnmerge from by Benjamin Peterson · 15 years ago
  100. 2c3ac6b Merged revisions 73370 via svnmerge from by Benjamin Peterson · 15 years ago