1. 0d776b1 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  2. 4d46c2a Remove unused variable. by Florent Xicluna · 13 years ago
  3. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  4. 12338ab Removed 'or long integer' from bin, oct, and hex docstrings. by Alexander Belopolsky · 13 years ago
  5. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  6. 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
  7. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  8. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  9. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  10. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  11. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  12. 5305a99 Since __import__ is not designed for general use, have its docstring point by Brett Cannon · 14 years ago
  13. 5b519e0 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING by Victor Stinner · 14 years ago
  14. 1768999 only catch AttributeError in hasattr() #9666 by Benjamin Peterson · 14 years ago
  15. 306f010 Issue #6697: Fix a crash if sys.stdin or sys.stdout encoding contain a surrogate by Victor Stinner · 14 years ago
  16. b744ba1 Issue #8610: Load file system codec at startup, and display a fatal error on by Victor Stinner · 14 years ago
  17. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  18. 120c212 Issue #8226: sys.setfilesystemencoding() raises a LookupError if the encoding by Victor Stinner · 14 years ago
  19. 09259e2 check PyDict_New() for error by Benjamin Peterson · 14 years ago
  20. 23e018a only accept AttributeError as indicating no __prepare__ attribute on a metaclass, allowing lookup errors to propogate by Benjamin Peterson · 14 years ago
  21. 480e8e3 Fix typo (reported by terlop on IRC) by Mark Dickinson · 15 years ago
  22. 97dd987 Merged revisions 76534,76538,76628,76701,76774 via svnmerge from by Benjamin Peterson · 15 years ago
  23. 9acadc5 Merged revisions 75714 via svnmerge from by Mark Dickinson · 15 years ago
  24. ba1e0f4 Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) by Skip Montanaro · 15 years ago
  25. c963731 refactor logic a little when no sep or end is passed by Benjamin Peterson · 15 years ago
  26. 8bc5b68 these builtins have to be initialized by Benjamin Peterson · 15 years ago
  27. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 15 years ago
  28. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  29. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 15 years ago
  30. 1124e71 Issue #4707: round(x, n) now returns an integer when x is an integer. by Mark Dickinson · 15 years ago
  31. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  32. 5d1ff00 Mini-optimization: use pack/unpack functions for argument tuples. by Raymond Hettinger · 16 years ago
  33. 3809026 #4826 exec() doesn't take a file object anymore by Benjamin Peterson · 16 years ago
  34. ced51db #4513: remove traces of zip() docstring from when it was izip(). by Georg Brandl · 16 years ago
  35. 6a27efa Issue 3723: Fixed initialization of subinterpreters by Christian Heimes · 16 years ago
  36. 04dc25c Issue #3187: Add sys.setfilesystemencoding. by Martin v. Löwis · 16 years ago
  37. d0db98f #1688: On Windows, the input() prompt was not correctly displayed if it by Amaury Forgeot d'Arc · 16 years ago
  38. 2cabc56 #3706: fix error message for wrong exec() argument type. R=Guido. by Georg Brandl · 16 years ago
  39. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  40. 7888d08 Merged revisions 65339-65340,65342 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  41. 0d748c2 Docstring typo by Mark Dickinson · 16 years ago
  42. 809ddaa #3191: fix round() docs and docstring. by Georg Brandl · 16 years ago
  43. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  44. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  45. 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
  46. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  47. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  48. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  49. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  50. d11ae5d Rename enumerate() kw argument name to "iterable" and fix "sequence"->"iterable" in some docstrings. by Georg Brandl · 16 years ago
  51. 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
  52. aaa6392 Fix nits in builtin next(). by Georg Brandl · 16 years ago
  53. db4115f Merged revisions 62039-62042 via svnmerge from by Neal Norwitz · 16 years ago
  54. 618dc5e Merged revisions 62004 via svnmerge from by Martin v. Löwis · 16 years ago
  55. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 16 years ago
  56. a6c6037 Issues 2186 and 2187. Move map() from itertools to builtins. by Raymond Hettinger · 16 years ago
  57. 17301e9 Issue 2186 and 2187. Move filter from itertools to builtins. by Raymond Hettinger · 16 years ago
  58. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 16 years ago
  59. cd5da7d Make print docstring consistent with its docs. by Georg Brandl · 16 years ago
  60. 400adb0 Merged revisions 60475-60479,60481-60488 via svnmerge from by Christian Heimes · 16 years ago
  61. 70b64fc Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted(). by Raymond Hettinger · 16 years ago
  62. fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 16 years ago
  63. bbffeb6 Merged revisions 60210-60233 via svnmerge from by Christian Heimes · 16 years ago
  64. 1dfde1d Replace map(None, *iterables) with zip(*iterables). by Raymond Hettinger · 16 years ago
  65. 819b8bf More PyImport_ImportModule -> PyImport_ImportModuleNoBlock by Christian Heimes · 17 years ago
  66. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  67. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  68. 94b7d3d Fixed #1593 spacing of the builtin_format function is inconsistent. Thanks to Joseph for the fix by Christian Heimes · 17 years ago
  69. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  70. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  71. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  72. c896700 Partial fix for bug #1306 by Christian Heimes · 17 years ago
  73. 91c7730 Fixed bug in input() which broke pdb by Christian Heimes · 17 years ago
  74. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  75. 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
  76. fef9bba Another #1415 fix for Windows GUI apps by Christian Heimes · 17 years ago
  77. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  78. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  79. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  80. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  81. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  82. 4a7b5d5 Decode input() with stdin.encoding. Fixes #1097. by Martin v. Löwis · 17 years ago
  83. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  84. c2550c7 Remove chr8, we're not likely to need it at this point by Neal Norwitz · 17 years ago
  85. 8193669 Added test cases for string.Formatter subclassing. by Eric Smith · 17 years ago
  86. 56e4a84 Added test to ensure __format__ methods return unicode objects. by Eric Smith · 17 years ago
  87. a4b8d1d Some changes in preparation of stricter rules about mixing str and bytes. by Guido van Rossum · 17 years ago
  88. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  89. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  90. 15d3d04 Before calling _PyType_Lookup() the type needs to be initialized. by Guido van Rossum · 17 years ago
  91. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  92. ae211f9 Implement the round functionality for PEP 3141, and add tests for it. by Alex Martelli · 17 years ago
  93. 86d8b34 Implement the trunc builtin for PEP 3141 by Alex Martelli · 17 years ago
  94. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  95. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  96. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  97. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  98. 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
  99. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  100. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago