1. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  2. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  3. 614c578 Issue #17619: Make input() check for Ctrl-C correctly on Windows. by Richard Oudkerk · 11 years ago
  4. 293ab97 #17178: merge with 3.2. by Ezio Melotti · 11 years ago
  5. b19ed57 #17178: update any()/all() docstrings to document their behavior with empty iterables. Patch by Ankur Ankan. by Ezio Melotti · 11 years ago
  6. 66d1eb2 Merge 3.2. by Stefan Krah · 12 years ago
  7. 07795df Issue #15741: Fix potential NULL dereference. Found by Coverity. by Stefan Krah · 12 years ago
  8. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  9. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  10. e9175bd Fix issue #15607: Update the print builtin function docstring with the new flush keyword. by Senthil Kumaran · 12 years ago
  11. cb4996a Issue #15471: Don't use mutable object as default values for the by Brett Cannon · 12 years ago
  12. 722d3ae Issue #15508: Fix the docstring for __import__ to not mention negative by Brett Cannon · 12 years ago
  13. 3c76aa6 Remove unused variabile "plain" in builtin_exec. by Ezio Melotti · 12 years ago
  14. edc6018 Remove outdated statement by Antoine Pitrou · 12 years ago
  15. 3a37b83 merge 3.2 by Benjamin Peterson · 12 years ago
  16. 8e8fbea don't leak if the __class__ closure is set by Benjamin Peterson · 12 years ago
  17. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  18. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  19. 0010256 fold into one if statement by Benjamin Peterson · 13 years ago
  20. a12d5c6 fix formatting by Benjamin Peterson · 13 years ago
  21. bc3b682 Closes #13761: add a "flush" keyword argument to print(). by Georg Brandl · 13 years ago
  22. 0ab2a26 merge 3.2 by Benjamin Peterson · 13 years ago
  23. 332503d merge 3.2 by Benjamin Peterson · 13 years ago
  24. 63ab875 Remove "#ifdef Py_UNICODE_WIDE": Python is now always wide by Victor Stinner · 13 years ago
  25. 50add04 quote the type name for improved readability by Philip Jenvey · 13 years ago
  26. 5ee9d8a Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  27. 0d776b1 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  28. 4d46c2a Remove unused variable. by Florent Xicluna · 13 years ago
  29. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  30. 908ae24 Merge 3.2 (linked to issue #1294232) by Florent Xicluna · 13 years ago
  31. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  32. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  33. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  34. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  35. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  36. ea281a5 include header with PyAST_Validate by Benjamin Peterson · 13 years ago
  37. 832bfe2 add a AST validator (closes #12575) by Benjamin Peterson · 13 years ago
  38. 405f32c plug refleak by Benjamin Peterson · 13 years ago
  39. 4f921c2 bytes -> bytearray by Benjamin Peterson · 13 years ago
  40. ce071ca bytes should be verboten in sum() (fixes #12654) by Benjamin Peterson · 13 years ago
  41. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  42. d64e8a7 Issue #9642: Fix filesystem encoding initialization: use the ANSI code page on by Victor Stinner · 13 years ago
  43. 0df8092 Removed 'or long integer' from bin, oct, and hex docstrings. by Alexander Belopolsky · 13 years ago
  44. 12338ab Removed 'or long integer' from bin, oct, and hex docstrings. by Alexander Belopolsky · 13 years ago
  45. fe93faf Issue #3080: Add PyImport_ImportModuleLevelObject() function by Victor Stinner · 13 years ago
  46. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  47. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  48. c0f1a1a Issue #11272: Fix input() and sys.stdin for Windows newline by Victor Stinner · 13 years ago
  49. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  50. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
  51. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  52. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  53. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  54. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  55. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  56. 5305a99 Since __import__ is not designed for general use, have its docstring point by Brett Cannon · 14 years ago
  57. 5b519e0 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING by Victor Stinner · 14 years ago
  58. 1768999 only catch AttributeError in hasattr() #9666 by Benjamin Peterson · 14 years ago
  59. 306f010 Issue #6697: Fix a crash if sys.stdin or sys.stdout encoding contain a surrogate by Victor Stinner · 14 years ago
  60. b744ba1 Issue #8610: Load file system codec at startup, and display a fatal error on by Victor Stinner · 14 years ago
  61. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  62. 120c212 Issue #8226: sys.setfilesystemencoding() raises a LookupError if the encoding by Victor Stinner · 14 years ago
  63. 09259e2 check PyDict_New() for error by Benjamin Peterson · 14 years ago
  64. 23e018a only accept AttributeError as indicating no __prepare__ attribute on a metaclass, allowing lookup errors to propogate by Benjamin Peterson · 14 years ago
  65. 480e8e3 Fix typo (reported by terlop on IRC) by Mark Dickinson · 15 years ago
  66. 97dd987 Merged revisions 76534,76538,76628,76701,76774 via svnmerge from by Benjamin Peterson · 15 years ago
  67. 9acadc5 Merged revisions 75714 via svnmerge from by Mark Dickinson · 15 years ago
  68. ba1e0f4 Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) by Skip Montanaro · 15 years ago
  69. c963731 refactor logic a little when no sep or end is passed by Benjamin Peterson · 15 years ago
  70. 8bc5b68 these builtins have to be initialized by Benjamin Peterson · 15 years ago
  71. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 15 years ago
  72. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  73. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 16 years ago
  74. 1124e71 Issue #4707: round(x, n) now returns an integer when x is an integer. by Mark Dickinson · 16 years ago
  75. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  76. 5d1ff00 Mini-optimization: use pack/unpack functions for argument tuples. by Raymond Hettinger · 16 years ago
  77. 3809026 #4826 exec() doesn't take a file object anymore by Benjamin Peterson · 16 years ago
  78. ced51db #4513: remove traces of zip() docstring from when it was izip(). by Georg Brandl · 16 years ago
  79. 6a27efa Issue 3723: Fixed initialization of subinterpreters by Christian Heimes · 16 years ago
  80. 04dc25c Issue #3187: Add sys.setfilesystemencoding. by Martin v. Löwis · 16 years ago
  81. d0db98f #1688: On Windows, the input() prompt was not correctly displayed if it by Amaury Forgeot d'Arc · 16 years ago
  82. 2cabc56 #3706: fix error message for wrong exec() argument type. R=Guido. by Georg Brandl · 16 years ago
  83. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  84. 7888d08 Merged revisions 65339-65340,65342 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  85. 0d748c2 Docstring typo by Mark Dickinson · 16 years ago
  86. 809ddaa #3191: fix round() docs and docstring. by Georg Brandl · 16 years ago
  87. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  88. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  89. f08a9dd Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from by Georg Brandl · 16 years ago
  90. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  91. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  92. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  93. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  94. d11ae5d Rename enumerate() kw argument name to "iterable" and fix "sequence"->"iterable" in some docstrings. by Georg Brandl · 16 years ago
  95. eca20b6 Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-63152,63155-63165,63167-63176,63181-63186,63188-63189 via svnmerge from by Alexandre Vassalotti · 16 years ago
  96. aaa6392 Fix nits in builtin next(). by Georg Brandl · 16 years ago
  97. db4115f Merged revisions 62039-62042 via svnmerge from by Neal Norwitz · 16 years ago
  98. 618dc5e Merged revisions 62004 via svnmerge from by Martin v. Löwis · 16 years ago
  99. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 16 years ago
  100. a6c6037 Issues 2186 and 2187. Move map() from itertools to builtins. by Raymond Hettinger · 16 years ago