1. 4702336 Issue #1677: Handle better a race condition between the interactive interpreter and by Tim Golden · 12 years ago
  2. 5eed306 allow None identifiers by Benjamin Peterson · 13 years ago
  3. 7782024 verify the types of AST strings and identifiers (closes #12609 and #12610) by Benjamin Peterson · 13 years ago
  4. 59c6951 hardcode the old svn __version__ by Benjamin Peterson · 13 years ago
  5. 08563d9 Issue #12016: my_fgets() now always clears errors before calling fgets(). Fix by Victor Stinner · 13 years ago
  6. 2c585f6 (Merge 3.1) Issue #1195: Fix input() if it is interrupted by CTRL+d and then by Victor Stinner · 13 years ago
  7. 5de51ac (Merge 3.1) Issue #11650: PyOS_StdioReadline() retries fgets() if it was by Victor Stinner · 13 years ago
  8. 3db4161 Issue #9020: The Py_IS* macros from pyctype.h should generally only be by Stefan Krah · 14 years ago
  9. c009735 spacing nit; this isn't C by Benjamin Peterson · 14 years ago
  10. 1056ca2 fix code formatting by Benjamin Peterson · 14 years ago
  11. cccfce1 Doc Fix. Correct link to Zephyr ASDL Abstract page. by Senthil Kumaran · 14 years ago
  12. 3bea1ed Use 4-spaces for indentation (instead of tabs) in pgen outputs by Victor Stinner · 14 years ago
  13. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  14. 88623d7 use our own locale independent ctype macros by Benjamin Peterson · 14 years ago
  15. 4ceeeb0 ensure that the locale does not affect the tokenization of identifiers by Benjamin Peterson · 14 years ago
  16. 6664426 Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt by Victor Stinner · 14 years ago
  17. d23d393 Issue #7820: The parser tokenizer restores all bytes in the right if the BOM by Victor Stinner · 14 years ago
  18. b64d613 #2560: remove an unnecessary 'for' loop from my_fgets() in Parser/myreadline.c. by Andrew M. Kuchling · 14 years ago
  19. b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 14 years ago
  20. ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 14 years ago
  21. 5f429e0 account for PyObject_IsInstance's new ability to fail by Benjamin Peterson · 15 years ago
  22. 42d6384 rewrite translate_newlines for clarity by Benjamin Peterson · 15 years ago
  23. e36199b fix several compile() issues by translating newlines in the tokenizer by Benjamin Peterson · 15 years ago
  24. e3383b8 spelling by Benjamin Peterson · 15 years ago
  25. 9586cf8 fix some coding style by Benjamin Peterson · 15 years ago
  26. d12f86c http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 15 years ago
  27. 08a0bbc don't mask encoding errors when decoding a string #6289 by Benjamin Peterson · 15 years ago
  28. a72be3b when no module is given in a 'from' relative import, make ImportFrom.module NULL by Benjamin Peterson · 15 years ago
  29. f0c9e46 Delete outdated make file for building the parser with MSVC 6. by Alexandre Vassalotti · 15 years ago
  30. b4347a2 remove has_key by Benjamin Peterson · 15 years ago
  31. 5c33d86 use booleans for flags by Benjamin Peterson · 15 years ago
  32. dea29d0 always inherit from an appropiate base class by Benjamin Peterson · 15 years ago
  33. bd9508a inherit from object by Benjamin Peterson · 15 years ago
  34. b3b7d85 Issue #4279: Fix build of parsermodule under Cygwin. by Martin v. Löwis · 15 years ago
  35. bc13092 Remove useless string literal. by Georg Brandl · 16 years ago
  36. bdca942 fix __future__ imports when multiple features are given by Benjamin Peterson · 16 years ago
  37. aff36f1 fix compiler warning by Benjamin Peterson · 16 years ago
  38. 35e01fb Fixed #4067 by implementing _attributes and _fields for the AST root node. by Armin Ronacher · 16 years ago
  39. 84076d8 update asdl_c.py from r66377 by Benjamin Peterson · 16 years ago
  40. 110a48c #3367: revert rev. 65539: this change causes test_parser to fail by Andrew M. Kuchling · 16 years ago
  41. efa61bc #3367 from Kristjan Valur Jonsson: by Andrew M. Kuchling · 16 years ago
  42. 114f7e5 #1683 prevent forking from interfering in threading storage by Benjamin Peterson · 16 years ago
  43. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
  44. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  45. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  46. 5216721 Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0). by Amaury Forgeot d'Arc · 16 years ago
  47. 820b51c #2627 Let it be known what pgen generates by Benjamin Peterson · 16 years ago
  48. 371d174 Use file.write instead of print to make it easier to merge with 3k. by Neal Norwitz · 16 years ago
  49. e34c21c Make AST nodes pickleable. by Georg Brandl · 16 years ago
  50. 1721e75 Fix error message -- "expects either 0 or 0 arguments" by Georg Brandl · 16 years ago
  51. 2c55c59 Make _fields attr for no fields consistent with _attributes attr. by Georg Brandl · 16 years ago
  52. c52ed59 #2505: allow easier creation of AST nodes. by Georg Brandl · 16 years ago
  53. a48f3ab Patch #2511: Give the "excepthandler" AST item proper attributes by making it a Sum. by Georg Brandl · 16 years ago
  54. f2bfd54 Properly check for consistency with the third argument of by Georg Brandl · 16 years ago
  55. aa5fbdd Silence compiler warning at the source. by Georg Brandl · 16 years ago
  56. fc8eef3 Patch #1810 by Thomas Lee, reviewed by myself: by Georg Brandl · 16 years ago
  57. d183bdd Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. by Neal Norwitz · 16 years ago
  58. 342212c Surround p_flags access with #ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD by Christian Heimes · 16 years ago
  59. 3c60833 Patch #2477: Added from __future__ import unicode_literals by Christian Heimes · 16 years ago
  60. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 16 years ago
  61. 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 16 years ago
  62. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 16 years ago
  63. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 16 years ago
  64. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 16 years ago
  65. fc2d010 Issue 1881. Increased the stack limit from 500 to 1500. Also added by Facundo Batista · 16 years ago
  66. c44af33 Add assertion that we do not blow out newl by Neal Norwitz · 16 years ago
  67. 082c9b0 Fixed bug #1915: Python compiles with --enable-unicode=no again. However several extension methods and modules do not work without unicode support. by Christian Heimes · 16 years ago
  68. 898f187 Add a "const" to make gcc happy. by Georg Brandl · 16 years ago
  69. 38d1715 Issue #1882: when compiling code from a string, encoding cookies in the by Georg Brandl · 16 years ago
  70. 14404b6 Fix #1679: "0x" was taken as a valid integer literal. by Georg Brandl · 16 years ago
  71. 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 16 years ago
  72. 7b1e119 Coverity issue CID #167 by Christian Heimes · 16 years ago
  73. 76b30d1 Fix #define ordering. by Georg Brandl · 16 years ago
  74. dfe5dc8 Make Python compile with --disable-unicode. by Georg Brandl · 16 years ago
  75. 6dae85f Warning "<> not supported in 3.x" should be enabled only when the -3 option is set. by Amaury Forgeot d'Arc · 17 years ago
  76. 02c9ab5 Fixed problems in the last commit. Filenames and line numbers weren't reported correctly. by Christian Heimes · 17 years ago
  77. 729ab15 Applied patch #1754273 and #1754271 from Thomas Glee by Christian Heimes · 17 years ago
  78. 9fc1b96 Change a PyErr_Print() into a PyErr_Clear(), per discussion in issue 1031213. by Guido van Rossum · 17 years ago
  79. a7d329a Fix Coverity 180: Don't overallocate. We don't need structs, but pointers. by Neal Norwitz · 17 years ago
  80. a513619 Patch #1031213: Decode source line in SyntaxErrors back to its original by Martin v. Löwis · 17 years ago
  81. 7b7d1c8 Fix a couple of problems in generating the AST code: by Neal Norwitz · 17 years ago
  82. 0db62aa Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c by Brett Cannon · 17 years ago
  83. 1fbe3ab Change a very minor inconsistency (that is purely cosmetic) in the AST by Brett Cannon · 17 years ago
  84. 4885e7d Prefix AST symbols with _Py_. Fixes #1637022. Will backport. by Martin v. Löwis · 17 years ago
  85. 9b3a824 Comment grammar by Andrew M. Kuchling · 18 years ago
  86. a10d3af Fix a bug in the parser's future statement handling that led to "with" by Georg Brandl · 18 years ago
  87. ca460d9 with and as are now keywords. There are some generated files I can't recreate. by Neal Norwitz · 18 years ago
  88. 9ac8953 Handle malloc failure. by Neal Norwitz · 18 years ago
  89. 6bf1a8f Handle NULL nodes while parsing. I'm not entirely sure this is correct. by Neal Norwitz · 18 years ago
  90. 71e05f1 Don't truncate if size_t is bigger than uint by Neal Norwitz · 18 years ago
  91. 12ca69b Fix comment typo by Andrew M. Kuchling · 18 years ago
  92. d21a7ff Patch #1357836: by Neal Norwitz · 18 years ago
  93. 7773671 Patch #1475845: Raise IndentationError for unexpected indent. by Martin v. Löwis · 18 years ago
  94. a0b6338 C++ compiler cleanup: cast signed to unsigned by Skip Montanaro · 18 years ago
  95. 7580149 Patch #1355883: Build Python-ast.c and Python-ast.h by Martin v. Löwis · 18 years ago
  96. 0cc56e5 Introduce asdl_int_seq, to hold cmpop_ty. by Martin v. Löwis · 18 years ago
  97. 7b782b6 more low-hanging fruit to make code compile under a C++ compiler. Not by Anthony Baxter · 18 years ago
  98. 08062d6 As discussed on python-dev, really fix the PyMem_*/PyObject_* memory API by Neal Norwitz · 18 years ago
  99. 01b8101 Make _kind types global for C++ compilation. by Martin v. Löwis · 18 years ago
  100. 1149002 Fix the code in Parser/ to also compile with C++. This was mostly casts for by Anthony Baxter · 18 years ago