1. f2cf1e3 bpo-36623: Clean parser headers and include files (GH-12253) by Pablo Galindo · 5 years ago
  2. 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 5 years ago
  3. 1f24a71 bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814) by Pablo Galindo · 5 years ago
  4. b9d2e97 Fix potential memory leak in parsetok.c (GH-11832) by Pablo Galindo · 5 years ago
  5. d2b4c19 bpo-35879: Fix type comment leaks (GH-11728) by Guido van Rossum · 6 years ago
  6. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 6 years ago
  7. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 6 years ago
  8. 995d9b9 bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021) by Anthony Sottile · 6 years ago
  9. 025eb98 bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338) by Ammar Askar · 6 years ago
  10. 3e26e42 bpo-34400: Fix more undefined behavior in parsetok.c (GH-8833) by Zackery Spytz · 6 years ago
  11. 7c4ab2a closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439) by Zackery Spytz · 6 years ago
  12. aba24ff bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262) by Serhiy Storchaka · 6 years ago
  13. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  14. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  15. cad876d Fix a compiler warning on Windows 64-bit in parsetok.c by Victor Stinner · 11 years ago
  16. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  17. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  18. 526daab Issue #18408: parsetok() must not write into stderr on memory allocation error by Victor Stinner · 11 years ago
  19. 3bf5f53 Issue #18408: parsetok() must not write into stderr on memory allocation error by Victor Stinner · 11 years ago
  20. cff9237 check after comments, too (#13832) by Benjamin Peterson · 13 years ago
  21. 188bee5 don't leak node by Benjamin Peterson · 13 years ago
  22. 79c1f96 only check this when parsing python by Benjamin Peterson · 13 years ago
  23. fa21bf0 Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement by Meador Inge · 13 years ago
  24. f364e7b Fix memory leak with FLUFL-related syntax errors (!) by Antoine Pitrou · 13 years ago
  25. 9ec2593 Fix memory leak with FLUFL-related syntax errors (!) by Antoine Pitrou · 13 years ago
  26. 758888d don't restrict unexpected EOF errors to the first line (closes #12216) by Benjamin Peterson · 13 years ago
  27. 7f2fee3 Issue #10785: Store the filename as Unicode in the Python parser. by Victor Stinner · 13 years ago
  28. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  29. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  30. aeaa592 Merged revisions 76230 via svnmerge from by Benjamin Peterson · 15 years ago
  31. ae4cfb1 http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 15 years ago
  32. e3944a5 The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! by Brett Cannon · 15 years ago
  33. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 15 years ago
  34. e1b5ac6 Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  35. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  36. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  37. b1b3efc Merged revisions 61954,61956-61957 via svnmerge from by Christian Heimes · 16 years ago
  38. 4d6ec85 Merged revisions 61952-61953 via svnmerge from by Christian Heimes · 16 years ago
  39. 2593146 Bug #2301: Don't try decoding the source code into the original by Martin v. Löwis · 16 years ago
  40. 52d168a Remove traces of Py_USING_UNICODE and Unicode-specific conditionals in configure. by Georg Brandl · 17 years ago
  41. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  42. fdc1a56 Cast away const qualifier to silence a compiler warning about it. by Brett Cannon · 17 years ago
  43. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  44. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  45. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  46. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  47. 6caa07b Make 'python -tt' the default, meaning Python won't allow mixing tabs and by Thomas Wouters · 18 years ago
  48. fc85c92 Get rid of compiler warning by Neal Norwitz · 18 years ago
  49. e4993c7 Get rid of compiler warning about with_msg and as_msg being unused by Neal Norwitz · 18 years ago
  50. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  51. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  52. 8ae1295 Make 'as' an actual keyword when with's future statement is used. Not by Thomas Wouters · 18 years ago
  53. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  54. a87c445 Remove C99ism. by Martin v. Löwis · 18 years ago
  55. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  56. 56c6561 Prevent unlikely memory leak, tok should always be freed when parsetok() returns by Neal Norwitz · 19 years ago
  57. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  58. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 19 years ago
  59. 4ded4b5 Pass the flags along, rather than ignoring them. Backport candidate by Neal Norwitz · 20 years ago
  60. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 21 years ago
  61. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  62. 00f1e3f Patch #534304: Implement phase 1 of PEP 263. by Martin v. Löwis · 22 years ago
  63. 80d4e2a SF patch #578297: by Andrew MacIntyre · 22 years ago
  64. 6b17abf Fix SF Bug 564931: compile() traceback must include filename. by Thomas Heller · 22 years ago
  65. c24ea08 Disable the parser hacks that enabled the "yield" keyword using a future by Neil Schemenauer · 22 years ago
  66. 16eff6f Initialize err_ret with filename if available. Fixes #498828. by Martin v. Löwis · 23 years ago
  67. 0c156a5 Patch from SF bug #472956: UMR when there is a syntax error (Neal Norwitz) by Guido van Rossum · 23 years ago
  68. da62ecc Add a really stupid warning about 'yield' used as an identifier. by Guido van Rossum · 23 years ago
  69. fe2127d Ugly. A pile of new xxxFlags() functions, to communicate to the parser by Tim Peters · 23 years ago
  70. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  71. 38aa14a PyParser_ParseString(): When the err_ret structure is initialized, the by Barry Warsaw · 24 years ago
  72. 23c9e00 Mass ANSIfication. by Thomas Wouters · 24 years ago
  73. 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 24 years ago
  74. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  75. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  76. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  77. 6da3434 Trent Mick: familiar simple Win64 patches by Guido van Rossum · 24 years ago
  78. 6b7a5d8 Jack Jansen: Removed Macintosh tab-guessing code by Guido van Rossum · 24 years ago
  79. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  80. 89ce454 Make sure that -t and -tt also work on strings passed to compile(). by Guido van Rossum · 26 years ago
  81. 6135df6 Declare and use Py_TabcheckFlag here. by Guido van Rossum · 26 years ago
  82. ff0ec52 Finally plug the memory leak caused by syntax error (including by Guido van Rossum · 27 years ago
  83. 86bea46 Another directory quickly renamed. by Guido van Rossum · 27 years ago
  84. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  85. ec49827 fix strncpy call (uninitialized memory read) by Guido van Rossum · 30 years ago
  86. b9f8d6e Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  87. bd0389d don't call strncpy(str, NULL, 0) by Guido van Rossum · 30 years ago
  88. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  89. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  90. 91ece42 Guess tab size on the Mac from tab resource. by Guido van Rossum · 32 years ago
  91. d8b1d37 Append a NEWLINE token at the end of a file. by Guido van Rossum · 32 years ago
  92. 56b07c8 When printing an error message, don't choke if tok->buf is NULL. by Guido van Rossum · 33 years ago
  93. 326f582 Don't print the line number for syntax errors in string parsing. by Guido van Rossum · 33 years ago
  94. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  95. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  96. 840bcf1 Set parse tree in parser data structure to NULL when returning by Guido van Rossum · 34 years ago
  97. 85a5fbb Initial revision by Guido van Rossum · 34 years ago