1. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  2. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  3. bc3b682 Closes #13761: add a "flush" keyword argument to print(). by Georg Brandl · 13 years ago
  4. 0ab2a26 merge 3.2 by Benjamin Peterson · 13 years ago
  5. 0010256 fold into one if statement by Benjamin Peterson · 13 years ago
  6. 332503d merge 3.2 by Benjamin Peterson · 13 years ago
  7. a12d5c6 fix formatting by Benjamin Peterson · 13 years ago
  8. 63ab875 Remove "#ifdef Py_UNICODE_WIDE": Python is now always wide by Victor Stinner · 13 years ago
  9. 50add04 quote the type name for improved readability by Philip Jenvey · 13 years ago
  10. 5ee9d8a Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  11. 0d776b1 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  12. 4d46c2a Remove unused variable. by Florent Xicluna · 13 years ago
  13. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  14. 908ae24 Merge 3.2 (linked to issue #1294232) by Florent Xicluna · 13 years ago
  15. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  16. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  17. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  18. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  19. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  20. ea281a5 include header with PyAST_Validate by Benjamin Peterson · 13 years ago
  21. 832bfe2 add a AST validator (closes #12575) by Benjamin Peterson · 13 years ago
  22. 405f32c plug refleak by Benjamin Peterson · 13 years ago
  23. 4f921c2 bytes -> bytearray by Benjamin Peterson · 13 years ago
  24. ce071ca bytes should be verboten in sum() (fixes #12654) by Benjamin Peterson · 13 years ago
  25. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  26. d64e8a7 Issue #9642: Fix filesystem encoding initialization: use the ANSI code page on by Victor Stinner · 13 years ago
  27. 0df8092 Removed 'or long integer' from bin, oct, and hex docstrings. by Alexander Belopolsky · 13 years ago
  28. 12338ab Removed 'or long integer' from bin, oct, and hex docstrings. by Alexander Belopolsky · 13 years ago
  29. fe93faf Issue #3080: Add PyImport_ImportModuleLevelObject() function by Victor Stinner · 13 years ago
  30. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  31. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  32. c0f1a1a Issue #11272: Fix input() and sys.stdin for Windows newline by Victor Stinner · 13 years ago
  33. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  34. 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
  35. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  36. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  37. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  38. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  39. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  40. 5305a99 Since __import__ is not designed for general use, have its docstring point by Brett Cannon · 14 years ago
  41. 5b519e0 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING by Victor Stinner · 14 years ago
  42. 1768999 only catch AttributeError in hasattr() #9666 by Benjamin Peterson · 14 years ago
  43. 306f010 Issue #6697: Fix a crash if sys.stdin or sys.stdout encoding contain a surrogate by Victor Stinner · 14 years ago
  44. b744ba1 Issue #8610: Load file system codec at startup, and display a fatal error on by Victor Stinner · 14 years ago
  45. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  46. 120c212 Issue #8226: sys.setfilesystemencoding() raises a LookupError if the encoding by Victor Stinner · 14 years ago
  47. 09259e2 check PyDict_New() for error by Benjamin Peterson · 14 years ago
  48. 23e018a only accept AttributeError as indicating no __prepare__ attribute on a metaclass, allowing lookup errors to propogate by Benjamin Peterson · 14 years ago
  49. 480e8e3 Fix typo (reported by terlop on IRC) by Mark Dickinson · 15 years ago
  50. 97dd987 Merged revisions 76534,76538,76628,76701,76774 via svnmerge from by Benjamin Peterson · 15 years ago
  51. 9acadc5 Merged revisions 75714 via svnmerge from by Mark Dickinson · 15 years ago
  52. ba1e0f4 Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) by Skip Montanaro · 15 years ago
  53. c963731 refactor logic a little when no sep or end is passed by Benjamin Peterson · 15 years ago
  54. 8bc5b68 these builtins have to be initialized by Benjamin Peterson · 15 years ago
  55. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 15 years ago
  56. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  57. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 16 years ago
  58. 1124e71 Issue #4707: round(x, n) now returns an integer when x is an integer. by Mark Dickinson · 16 years ago
  59. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  60. 5d1ff00 Mini-optimization: use pack/unpack functions for argument tuples. by Raymond Hettinger · 16 years ago
  61. 3809026 #4826 exec() doesn't take a file object anymore by Benjamin Peterson · 16 years ago
  62. ced51db #4513: remove traces of zip() docstring from when it was izip(). by Georg Brandl · 16 years ago
  63. 6a27efa Issue 3723: Fixed initialization of subinterpreters by Christian Heimes · 16 years ago
  64. 04dc25c Issue #3187: Add sys.setfilesystemencoding. by Martin v. Löwis · 16 years ago
  65. d0db98f #1688: On Windows, the input() prompt was not correctly displayed if it by Amaury Forgeot d'Arc · 16 years ago
  66. 2cabc56 #3706: fix error message for wrong exec() argument type. R=Guido. by Georg Brandl · 16 years ago
  67. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  68. 7888d08 Merged revisions 65339-65340,65342 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  69. 0d748c2 Docstring typo by Mark Dickinson · 16 years ago
  70. 809ddaa #3191: fix round() docs and docstring. by Georg Brandl · 16 years ago
  71. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  72. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  73. 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
  74. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  75. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  76. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  77. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  78. d11ae5d Rename enumerate() kw argument name to "iterable" and fix "sequence"->"iterable" in some docstrings. by Georg Brandl · 16 years ago
  79. 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
  80. aaa6392 Fix nits in builtin next(). by Georg Brandl · 16 years ago
  81. db4115f Merged revisions 62039-62042 via svnmerge from by Neal Norwitz · 16 years ago
  82. 618dc5e Merged revisions 62004 via svnmerge from by Martin v. Löwis · 16 years ago
  83. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 16 years ago
  84. a6c6037 Issues 2186 and 2187. Move map() from itertools to builtins. by Raymond Hettinger · 16 years ago
  85. 17301e9 Issue 2186 and 2187. Move filter from itertools to builtins. by Raymond Hettinger · 16 years ago
  86. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 16 years ago
  87. cd5da7d Make print docstring consistent with its docs. by Georg Brandl · 17 years ago
  88. 400adb0 Merged revisions 60475-60479,60481-60488 via svnmerge from by Christian Heimes · 17 years ago
  89. 70b64fc Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted(). by Raymond Hettinger · 17 years ago
  90. fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 17 years ago
  91. bbffeb6 Merged revisions 60210-60233 via svnmerge from by Christian Heimes · 17 years ago
  92. 1dfde1d Replace map(None, *iterables) with zip(*iterables). by Raymond Hettinger · 17 years ago
  93. 819b8bf More PyImport_ImportModule -> PyImport_ImportModuleNoBlock by Christian Heimes · 17 years ago
  94. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  95. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  96. 94b7d3d Fixed #1593 spacing of the builtin_format function is inconsistent. Thanks to Joseph for the fix by Christian Heimes · 17 years ago
  97. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  98. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  99. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  100. c896700 Partial fix for bug #1306 by Christian Heimes · 17 years ago