1. 9b33872 Issue #22146: Fix typo in __build_class__ error message by Zachary Ware · 10 years ago
  2. f2fb73f Issue #19362: Tweek len() doc and docstring to expand the indicated range of by Terry Jan Reedy · 10 years ago
  3. 2a54582 Issue 20620: Update the min()/max() docs for the new default argument. by Raymond Hettinger · 10 years ago
  4. 5edbb7b correct len signature in docstring (closes #21294) by Benjamin Peterson · 10 years ago
  5. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  6. d45a46b merge 3.3 (#19910) by Benjamin Peterson · 11 years ago
  7. 933142a document that compile() can take bytes (closes #19910) by Benjamin Peterson · 11 years ago
  8. a4b7a75 Issue #3158: doctest can now find doctests in functions and methods by Zachary Ware · 11 years ago
  9. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  10. eaa2883 Issue #19512: builtin print() function uses an identifier instead of literal by Victor Stinner · 11 years ago
  11. ae9f161 Issue #19512: __build_class() builtin now uses an identifier for the "metaclass" string by Victor Stinner · 11 years ago
  12. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  13. b44562b Issue #19512: eval() and exec() now use an identifier for "__builtins__" string by Victor Stinner · 11 years ago
  14. 41bb43a Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle by Victor Stinner · 11 years ago
  15. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  16. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  17. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  18. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  19. 4ebf6d7 Issue #18560: Fix potential NULL pointer dereference in sum() by Christian Heimes · 11 years ago
  20. 704e2d3 Issue #18560: Fix potential NULL pointer dereference in sum() by Christian Heimes · 11 years ago
  21. 1e53bba Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError by Victor Stinner · 11 years ago
  22. acb362e Merge: #18424: PEP8ify the tense of the sum docstring. by R David Murray · 11 years ago
  23. 87ead11 #18424: PEP8ify the tense of the sum docstring. by R David Murray · 11 years ago
  24. 4d6018f Issue 18111: Add a default argument to min() and max() by Raymond Hettinger · 11 years ago
  25. e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 11 years ago
  26. 214a7d2 properly lookup the __round__ special method (closes #17722) by Benjamin Peterson · 11 years ago
  27. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 11 years ago
  28. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  29. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  30. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  31. eea1f5c Merge by Richard Oudkerk · 11 years ago
  32. 614c578 Issue #17619: Make input() check for Ctrl-C correctly on Windows. by Richard Oudkerk · 11 years ago
  33. 178e6fe #17178: merge with 3.3. by Ezio Melotti · 11 years ago
  34. 293ab97 #17178: merge with 3.2. by Ezio Melotti · 11 years ago
  35. b19ed57 #17178: update any()/all() docstrings to document their behavior with empty iterables. Patch by Ankur Ankan. by Ezio Melotti · 11 years ago
  36. f76f0ee compile doesn't accept code objects by Philip Jenvey · 12 years ago
  37. 42124a7 initialize map/filter/zip in _PyBuiltin_Init rather than the catch-all function by Benjamin Peterson · 12 years ago
  38. 66d1eb2 Merge 3.2. by Stefan Krah · 12 years ago
  39. 07795df Issue #15741: Fix potential NULL dereference. Found by Coverity. by Stefan Krah · 12 years ago
  40. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  41. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  42. e9175bd Fix issue #15607: Update the print builtin function docstring with the new flush keyword. by Senthil Kumaran · 12 years ago
  43. cb4996a Issue #15471: Don't use mutable object as default values for the by Brett Cannon · 12 years ago
  44. 722d3ae Issue #15508: Fix the docstring for __import__ to not mention negative by Brett Cannon · 12 years ago
  45. 3c76aa6 Remove unused variabile "plain" in builtin_exec. by Ezio Melotti · 12 years ago
  46. edc6018 Remove outdated statement by Antoine Pitrou · 12 years ago
  47. 3a37b83 merge 3.2 by Benjamin Peterson · 12 years ago
  48. 8e8fbea don't leak if the __class__ closure is set by Benjamin Peterson · 12 years ago
  49. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  50. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  51. 0010256 fold into one if statement by Benjamin Peterson · 13 years ago
  52. a12d5c6 fix formatting by Benjamin Peterson · 13 years ago
  53. bc3b682 Closes #13761: add a "flush" keyword argument to print(). by Georg Brandl · 13 years ago
  54. 0ab2a26 merge 3.2 by Benjamin Peterson · 13 years ago
  55. 332503d merge 3.2 by Benjamin Peterson · 13 years ago
  56. 63ab875 Remove "#ifdef Py_UNICODE_WIDE": Python is now always wide by Victor Stinner · 13 years ago
  57. 50add04 quote the type name for improved readability by Philip Jenvey · 13 years ago
  58. 5ee9d8a Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  59. 0d776b1 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  60. 4d46c2a Remove unused variable. by Florent Xicluna · 13 years ago
  61. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  62. 908ae24 Merge 3.2 (linked to issue #1294232) by Florent Xicluna · 13 years ago
  63. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  64. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  65. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  66. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  67. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  68. ea281a5 include header with PyAST_Validate by Benjamin Peterson · 13 years ago
  69. 832bfe2 add a AST validator (closes #12575) by Benjamin Peterson · 13 years ago
  70. 405f32c plug refleak by Benjamin Peterson · 13 years ago
  71. 4f921c2 bytes -> bytearray by Benjamin Peterson · 13 years ago
  72. ce071ca bytes should be verboten in sum() (fixes #12654) by Benjamin Peterson · 13 years ago
  73. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  74. d64e8a7 Issue #9642: Fix filesystem encoding initialization: use the ANSI code page on by Victor Stinner · 13 years ago
  75. 0df8092 Removed 'or long integer' from bin, oct, and hex docstrings. by Alexander Belopolsky · 13 years ago
  76. 12338ab Removed 'or long integer' from bin, oct, and hex docstrings. by Alexander Belopolsky · 13 years ago
  77. fe93faf Issue #3080: Add PyImport_ImportModuleLevelObject() function by Victor Stinner · 13 years ago
  78. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  79. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  80. c0f1a1a Issue #11272: Fix input() and sys.stdin for Windows newline by Victor Stinner · 13 years ago
  81. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  82. 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
  83. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  84. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  85. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  86. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  87. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  88. 5305a99 Since __import__ is not designed for general use, have its docstring point by Brett Cannon · 14 years ago
  89. 5b519e0 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING by Victor Stinner · 14 years ago
  90. 1768999 only catch AttributeError in hasattr() #9666 by Benjamin Peterson · 14 years ago
  91. 306f010 Issue #6697: Fix a crash if sys.stdin or sys.stdout encoding contain a surrogate by Victor Stinner · 14 years ago
  92. b744ba1 Issue #8610: Load file system codec at startup, and display a fatal error on by Victor Stinner · 14 years ago
  93. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  94. 120c212 Issue #8226: sys.setfilesystemencoding() raises a LookupError if the encoding by Victor Stinner · 14 years ago
  95. 09259e2 check PyDict_New() for error by Benjamin Peterson · 14 years ago
  96. 23e018a only accept AttributeError as indicating no __prepare__ attribute on a metaclass, allowing lookup errors to propogate by Benjamin Peterson · 14 years ago
  97. 480e8e3 Fix typo (reported by terlop on IRC) by Mark Dickinson · 15 years ago
  98. 97dd987 Merged revisions 76534,76538,76628,76701,76774 via svnmerge from by Benjamin Peterson · 15 years ago
  99. 9acadc5 Merged revisions 75714 via svnmerge from by Mark Dickinson · 15 years ago
  100. ba1e0f4 Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) by Skip Montanaro · 15 years ago