Python 3.6.5
  1. 690c36f [3.6] bpo-31852: Fix segfault caused by using the async soft keyword (GH-4122) by Pablo Galindo · 8 years ago
  2. ec3d34c [3.6] bpo-31536: Avoid wholesale rebuild after `make regen-all` (GH-3678) (#3797) by Miss Islington (bot) · 8 years ago
  3. 2eea952 bpo-31095: fix potential crash during GC (GH-3195) by INADA Naoki · 8 years ago
  4. a0cb7db Fix a shadow-compatible-local warning (#2181) by Yuan Chao Chou · 8 years ago
  5. 6f80562 Issue #28489: Fix comment in tokenizer.c by Berker Peksag · 9 years ago
  6. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 9 years ago
  7. 6c2b9d3 Issue #28333: Fixes off-by-one error that was adding an extra space. by Steve Dower · 9 years ago
  8. 59bd34f Issue #28333: Remove unnecessary increment. by Steve Dower · 9 years ago
  9. 3cd187b Issue #28333: Enables Unicode for ps1/ps2 and input() prompts. (Patch by Eryk Sun) by Steve Dower · 9 years ago
  10. 5e80855 Issue #24098: Fixed possible crash when AST is changed in process of by Serhiy Storchaka · 9 years ago
  11. cf38060 Issue #24098: Fixed possible crash when AST is changed in process of by Serhiy Storchaka · 9 years ago
  12. e2e792d merge 3.5 (#28184) by Benjamin Peterson · 9 years ago
  13. f5e8e8f merge 3.5 (#24022) by Benjamin Peterson · 9 years ago
  14. 57bda33 merge 3.4 by Benjamin Peterson · 9 years ago
  15. 26d998c properly handle the single null-byte file (closes #24022) by Benjamin Peterson · 9 years ago
  16. 9ac11a7 properly free memory in pgen by Benjamin Peterson · 9 years ago
  17. 5a715cf merge 3.5 (#27981) by Benjamin Peterson · 9 years ago
  18. 35ee948 restructure fp_setreadl so as to avoid refleaks (closes #27981) by Benjamin Peterson · 9 years ago
  19. a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 9 years ago
  20. 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 9 years ago
  21. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 9 years ago
  22. c6cc23d Skip unused value in tokenizer code by Christian Heimes · 9 years ago
  23. 3929499 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) by Steve Dower · 9 years ago
  24. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 9 years ago
  25. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 9 years ago
  26. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 9 years ago
  27. 4bb31e9 Fix a clang warning in grammar.c by Victor Stinner · 9 years ago
  28. 531396c Issue #27336: Fix compilation failures --without-threads by Berker Peksag · 9 years ago
  29. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  30. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  31. 2a65ecb Issue #26130: Remove redundant variable 's' from Parser/parser.c by Berker Peksag · 9 years ago
  32. 7285d52 remove duplicated check for fractions and complex numbers (closes #26076) by Benjamin Peterson · 9 years ago
  33. a051bf3 Issue #26581: Use the first coding cookie on a line, not the last one. by Serhiy Storchaka · 9 years ago
  34. e431d3c Issue #26581: Use the first coding cookie on a line, not the last one. by Serhiy Storchaka · 9 years ago
  35. 0611c26 On memory error, dump the memory block traceback by Victor Stinner · 9 years ago
  36. 8a1be61 Add more checks on the GIL by Victor Stinner · 9 years ago
  37. 25219f5 Issue #26146: remove useless code by Victor Stinner · 10 years ago
  38. f2c1aa1 Add ast.Constant by Victor Stinner · 10 years ago
  39. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 10 years ago
  40. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 10 years ago
  41. f006940 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 10 years ago
  42. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 10 years ago
  43. 0304729 Issue #25388: Fixed tokenizer crash when processing undecodable source code by Serhiy Storchaka · 10 years ago
  44. 7e2b870 Issue #25388: Fixed tokenizer crash when processing undecodable source code by Serhiy Storchaka · 10 years ago
  45. 0d44111 Issue #25388: Fixed tokenizer crash when processing undecodable source code by Serhiy Storchaka · 10 years ago
  46. f9827ea Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when by Victor Stinner · 10 years ago
  47. c106c68 Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when by Victor Stinner · 10 years ago
  48. 860c8a4 merge 3.5 (#25502) by Benjamin Peterson · 10 years ago
  49. 669ff66 remove duplicated imports (closes #25502) by Benjamin Peterson · 10 years ago
  50. fc632e3 Merge with 3.5. by Serhiy Storchaka · 10 years ago
  51. 235a6f0 Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that. by Eric V. Smith · 10 years ago
  52. 6408dc8 Fixed indentation. by Eric V. Smith · 10 years ago
  53. 481d3af Make asdl_c.py to generate Python-ast.c changed in issue #15989. by Serhiy Storchaka · 10 years ago
  54. 96ec934 Issue #24619: Simplify async/await tokenization. by Yury Selivanov · 10 years ago
  55. 8fb307c Issue #24619: New approach for tokenizing async/await. by Yury Selivanov · 10 years ago
  56. 8085b80 Issue 24226: Fix parsing of many sequential one-line 'def' statements. by Yury Selivanov · 10 years ago
  57. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 10 years ago
  58. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 10 years ago
  59. 273a720 merge 3.4 (#24022) by Benjamin Peterson · 10 years ago
  60. d73aca7 do not call into python api if an exception is set (#24022) by Benjamin Peterson · 10 years ago
  61. 45ec328 Removed trailing whitespaces in miscalenous files. by Serhiy Storchaka · 10 years ago
  62. a8cd4d4 Got rid of warnings "suggest braces around empty body in an ‘else’ statement" by Serhiy Storchaka · 10 years ago
  63. df1b699 Issue #22823: Use set literals instead of creating a set from a list by Raymond Hettinger · 11 years ago
  64. 67c719b Silenced some warnings about comparison between signed and unsigned integer by Serhiy Storchaka · 11 years ago
  65. 416b516 Fix bootstrapping asdl -- it didn't work with Python 2.7. by Guido van Rossum · 11 years ago
  66. 3e43979 merge 3.4 (#21642) by Benjamin Peterson · 11 years ago
  67. c416162 allow the keyword else immediately after (no space) an integer (closes #21642) by Benjamin Peterson · 11 years ago
  68. 5e3d338 Issue #19655: Replace the ASDL parser carried with CPython by Eli Bendersky · 11 years ago
  69. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 11 years ago
  70. 78f1e4c Merge with 3.3 by Martin v. Löwis · 11 years ago
  71. 815b41b Issue #20731: Properly position in source code files even if they by Martin v. Löwis · 11 years ago
  72. 42ec031 merge 3.3 (#20588) by Benjamin Peterson · 12 years ago
  73. c2f665e don't put runtime values in array initializer for C89 compliance (closes #20588) by Benjamin Peterson · 12 years ago
  74. 5940b92 Do not reset the line number because we already set file position to correct by Serhiy Storchaka · 12 years ago
  75. 1064a13 Do not reset the line number because we already set file position to correct by Serhiy Storchaka · 12 years ago
  76. 7282ff6 Issue #18960: Fix bugs with Python source code encoding in the second line. by Serhiy Storchaka · 12 years ago
  77. 768c16c Issue #18960: Fix bugs with Python source code encoding in the second line. by Serhiy Storchaka · 12 years ago
  78. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 12 years ago
  79. 724b828 upcast int to size_t to silence two autological-constant-out-of-range-compare warnings with clang. by Christian Heimes · 12 years ago
  80. cad876d Fix a compiler warning on Windows 64-bit in parsetok.c by Victor Stinner · 12 years ago
  81. 3a8a333 Fix compiler warnings on Windows 64-bit in grammar.c by Victor Stinner · 12 years ago
  82. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 12 years ago
  83. c548660 Issue #16742: My fix on PyOS_StdioReadline() was incomplete, PyMem_FREE() was by Victor Stinner · 12 years ago
  84. d01d396e Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py". by Antoine Pitrou · 12 years ago
  85. 2fe9bac Close #16742: Fix misuse of memory allocations in PyOS_Readline() by Victor Stinner · 12 years ago
  86. 1891cff Move open outside try/finally by Eli Bendersky · 12 years ago
  87. 9908123 Don't use fancy new Python features like 'with' - some bots don't have them by Eli Bendersky · 12 years ago
  88. 58fe1b1 Normalize whitespace by Eli Bendersky · 12 years ago
  89. b788a38 Small fixes in Parser/asdl.py - no change in functionality. by Eli Bendersky · 12 years ago
  90. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 12 years ago
  91. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 12 years ago
  92. d640fe2 #18803: merge with 3.3. by Ezio Melotti · 12 years ago
  93. 7c4a7e6 #18803: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 12 years ago
  94. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 12 years ago
  95. 73207e0 Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. by Christian Heimes · 12 years ago
  96. 9ae513c Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. by Christian Heimes · 12 years ago
  97. 1289565 Silence warning about set but unused variable inside compile_atom() in non-debug builds by Christian Heimes · 12 years ago
  98. 5e4d372 Silence warning about set but unused variable inside compile_atom() in non-debug builds by Christian Heimes · 12 years ago
  99. b7f1b38 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 12 years ago
  100. 70c94e7 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 12 years ago