1. 6f80562 Issue #28489: Fix comment in tokenizer.c by Berker Peksag · 7 years ago
  2. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  3. f5e8e8f merge 3.5 (#24022) by Benjamin Peterson · 8 years ago
  4. 57bda33 merge 3.4 by Benjamin Peterson · 8 years ago
  5. 26d998c properly handle the single null-byte file (closes #24022) by Benjamin Peterson · 8 years ago
  6. 5a715cf merge 3.5 (#27981) by Benjamin Peterson · 8 years ago
  7. 35ee948 restructure fp_setreadl so as to avoid refleaks (closes #27981) by Benjamin Peterson · 8 years ago
  8. a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 8 years ago
  9. c6cc23d Skip unused value in tokenizer code by Christian Heimes · 8 years ago
  10. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  11. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  12. 7285d52 remove duplicated check for fractions and complex numbers (closes #26076) by Benjamin Peterson · 8 years ago
  13. a051bf3 Issue #26581: Use the first coding cookie on a line, not the last one. by Serhiy Storchaka · 8 years ago
  14. e431d3c Issue #26581: Use the first coding cookie on a line, not the last one. by Serhiy Storchaka · 8 years ago
  15. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 8 years ago
  16. f006940 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  17. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  18. 0304729 Issue #25388: Fixed tokenizer crash when processing undecodable source code by Serhiy Storchaka · 9 years ago
  19. 7e2b870 Issue #25388: Fixed tokenizer crash when processing undecodable source code by Serhiy Storchaka · 9 years ago
  20. 0d44111 Issue #25388: Fixed tokenizer crash when processing undecodable source code by Serhiy Storchaka · 9 years ago
  21. 235a6f0 Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that. by Eric V. Smith · 9 years ago
  22. 6408dc8 Fixed indentation. by Eric V. Smith · 9 years ago
  23. 96ec934 Issue #24619: Simplify async/await tokenization. by Yury Selivanov · 9 years ago
  24. 8fb307c Issue #24619: New approach for tokenizing async/await. by Yury Selivanov · 9 years ago
  25. 8085b80 Issue 24226: Fix parsing of many sequential one-line 'def' statements. by Yury Selivanov · 9 years ago
  26. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  27. 273a720 merge 3.4 (#24022) by Benjamin Peterson · 9 years ago
  28. d73aca7 do not call into python api if an exception is set (#24022) by Benjamin Peterson · 9 years ago
  29. 3e43979 merge 3.4 (#21642) by Benjamin Peterson · 10 years ago
  30. c416162 allow the keyword else immediately after (no space) an integer (closes #21642) by Benjamin Peterson · 10 years ago
  31. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  32. 78f1e4c Merge with 3.3 by Martin v. Löwis · 10 years ago
  33. 815b41b Issue #20731: Properly position in source code files even if they by Martin v. Löwis · 10 years ago
  34. 5940b92 Do not reset the line number because we already set file position to correct by Serhiy Storchaka · 10 years ago
  35. 1064a13 Do not reset the line number because we already set file position to correct by Serhiy Storchaka · 10 years ago
  36. 7282ff6 Issue #18960: Fix bugs with Python source code encoding in the second line. by Serhiy Storchaka · 10 years ago
  37. 768c16c Issue #18960: Fix bugs with Python source code encoding in the second line. by Serhiy Storchaka · 10 years ago
  38. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  39. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  40. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  41. cb2226c merge 3.3 by Benjamin Peterson · 11 years ago
  42. 265fba4 move declaration to top of block by Benjamin Peterson · 11 years ago
  43. fd9c020 merge 3.3 (closes #18470) by Benjamin Peterson · 11 years ago
  44. 2dbfd88 check the return value of new_string() (closes #18470) by Benjamin Peterson · 11 years ago
  45. 9670543 Issue #18038: SyntaxError raised during compilation sources with illegal by Serhiy Storchaka · 11 years ago
  46. 3af14aa Issue #18038: SyntaxError raised during compilation sources with illegal by Serhiy Storchaka · 11 years ago
  47. 7969773 Issue #9566: Fix compiler warning on Windows 64-bit by Victor Stinner · 11 years ago
  48. d084558 make _PyParser_TokenNames const by Benjamin Peterson · 12 years ago
  49. 0b3847d Issue #15096: Drop support for the ur string prefix by Christian Heimes · 12 years ago
  50. 6ecf77b Basic support for PEP 414 without docs or tests. by Armin Ronacher · 12 years ago
  51. 3a5d4cb Issue #13748: Raw bytes literals can now be written with the `rb` prefix as well as `br`. by Antoine Pitrou · 12 years ago
  52. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  53. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  54. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  55. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  56. c1935d2 Revert bb62908896fe, but keep the test by Jesus Cea · 13 years ago
  57. 88f7841 Correctly merging #9319 into 3.3? by Jesus Cea · 13 years ago
  58. c68b6aa Issue #9319: Fix a crash on parsing a Python source code without encoding by Victor Stinner · 13 years ago
  59. fe7c5b5 Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error. by Victor Stinner · 13 years ago
  60. 7f2fee3 Issue #10785: Store the filename as Unicode in the Python parser. by Victor Stinner · 13 years ago
  61. 034c753 Issue #10841: don't translate newlines for pgen by Victor Stinner · 13 years ago
  62. 89e3436 Issue #10841: set binary mode on files; the parser translates newlines by Victor Stinner · 13 years ago
  63. aaa4e9a Remove arbitrary string length limits by Victor Stinner · 13 years ago
  64. 83098a4 Issue #10778: decoding_fgets() decodes the filename from the filesystem by Victor Stinner · 13 years ago
  65. 22a351a Issue #10095: fp_setreadl() doesn't reopen the file, reuse instead the file by Victor Stinner · 14 years ago
  66. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  67. 003a5e7 Use PyErr_Format() in decoding_fgets() by Victor Stinner · 14 years ago
  68. 4893abc Merged revisions 79725 via svnmerge from by Benjamin Peterson · 14 years ago
  69. 8daa49e Merged revisions 79723 via svnmerge from by Benjamin Peterson · 14 years ago
  70. 52f6dd7 Merged revisions 78826 via svnmerge from by Victor Stinner · 14 years ago
  71. 6aa278e Merged revisions 78603 via svnmerge from by Victor Stinner · 14 years ago
  72. 8f326b2 Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge from by Benjamin Peterson · 14 years ago
  73. a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 15 years ago
  74. aeaa592 Merged revisions 76230 via svnmerge from by Benjamin Peterson · 15 years ago
  75. ba1e0f4 Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) by Skip Montanaro · 15 years ago
  76. 0289b15 Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from by Benjamin Peterson · 15 years ago
  77. e3944a5 The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! by Brett Cannon · 15 years ago
  78. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 15 years ago
  79. 19288c2 Fix an issue in the tokenizer, where a file is opened by fd, but the underlying PyFileIO object wasn created with the closefd attribute true. by Kristján Valur Jónsson · 15 years ago
  80. da78043 Latin-1 source code was not being properly decoded when passed through by Brett Cannon · 16 years ago
  81. cf8016a Issues #2384 and #3975: Tracebacks were not correctly printed when the source file by Amaury Forgeot d'Arc · 16 years ago
  82. 9252287 Follow-up of #3773: In PyTokenizer_FindEncoding, remove the call to PyErr_NoMemory when PyMem_MALLOC() fails. by Amaury Forgeot d'Arc · 16 years ago
  83. 1b933ed #3773: Check for errors around the use of PyTokenizer_FindEncoding(). by Amaury Forgeot d'Arc · 16 years ago
  84. 8a9583e PyTokenizer_FindEncoding() always failed because it set the tokenizer state by Brett Cannon · 16 years ago
  85. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  86. 2c9c7a5 Renamed files bytesobject.[ch] and stringobject.[ch] Fixed Windows build by Christian Heimes · 16 years ago
  87. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  88. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  89. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  90. bbe741d Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from by Christian Heimes · 16 years ago
  91. 2593146 Bug #2301: Don't try decoding the source code into the original by Martin v. Löwis · 16 years ago
  92. 412dc9c Merged revisions 60350-60363 via svnmerge from by Christian Heimes · 16 years ago
  93. 1af737c Merged revisions 60176-60209 via svnmerge from by Christian Heimes · 16 years ago
  94. 86def6c Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from by Georg Brandl · 16 years ago
  95. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 16 years ago
  96. 819b8bf More PyImport_ImportModule -> PyImport_ImportModuleNoBlock by Christian Heimes · 16 years ago
  97. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 16 years ago
  98. af59346 Problem found while converting from PyBytes to PyString: by Amaury Forgeot d'Arc · 17 years ago
  99. cf171a7 Cleanup of tokenizer.c. by Guido van Rossum · 17 years ago
  100. 65f9ace Correction for issue1134: all source files with a coding spec, except latin-1 by Amaury Forgeot d'Arc · 17 years ago