1. ad94225 Issue #26729: Fixed __text_signature__ for sorted(). Patch by Erik Welch. by Serhiy Storchaka · 7 years ago
  2. 3a10425 Issue #26729: Fixed __text_signature__ for sorted(). Patch by Erik Welch. by Serhiy Storchaka · 7 years ago
  3. 398ef5c Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted(). by Serhiy Storchaka · 7 years ago
  4. 19d2467 Issue #23722: improve __classcell__ compatibility by Nick Coghlan · 7 years ago
  5. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  6. 944368e Issue #23722: Initialize __class__ from type.__new__() by Nick Coghlan · 8 years ago
  7. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 8 years ago
  8. f0f1c23 Issue 27936: Fix inconsistent round() behavior between float and int by Raymond Hettinger · 8 years ago
  9. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  10. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  11. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  12. 3b09cd6 Merge by Raymond Hettinger · 8 years ago
  13. f74c33a Merge by Raymond Hettinger · 8 years ago
  14. 7ea386e Issue 19504: Change "customise" to "customize" American spelling. by Raymond Hettinger · 8 years ago
  15. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 8 years ago
  16. cdb5cee Issue #27809: map_next() uses fast call by Victor Stinner · 8 years ago
  17. f0cba67 Backed out changeset 70f88b097f60 (map_next) by Victor Stinner · 8 years ago
  18. a9ba1ab Issue #27809: map_next() uses fast call by Victor Stinner · 8 years ago
  19. d1c2a8e Issue #27809: builtin___build_class__() uses fast call by Victor Stinner · 8 years ago
  20. 463b86a Issue #27809: Use _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  21. 2990fa1 Issue #27809: Use _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  22. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  23. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  24. cfdfbb4 Issue #27342: Replaced some Py_XDECREFs with Py_DECREFs. Patch by Xiang Zhang. by Serhiy Storchaka · 8 years ago
  25. 24182a3 Restored parameter name "self" since gdb needs exact specific parameter names. by Serhiy Storchaka · 8 years ago
  26. 7a9579c Got rid of redundand "self" parameter declarations. by Serhiy Storchaka · 8 years ago
  27. 2e310b4 Regenerate Argument Clinic code for issue #26874. by Serhiy Storchaka · 8 years ago
  28. df07173 Regenerate Argument Clinic code for issue #26874. by Serhiy Storchaka · 8 years ago
  29. 5031a67 Closes #26874: Merge with 3.5 by Zachary Ware · 8 years ago
  30. 7f227d9 Issue #26874: Simplify the divmod docstring by Zachary Ware · 8 years ago
  31. 54559b6 Closes #26874: Merge with 3.5 by Zachary Ware · 8 years ago
  32. 4d4160a Issue #26874: Fix divmod docstring by Zachary Ware · 8 years ago
  33. 21a663e Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject(). by Serhiy Storchaka · 8 years ago
  34. 9513ba3 Issue #24802: Merge null termination fixes from 3.5 by Martin Panter · 9 years ago
  35. 61d6e4a Issue #24802: Merge null termination fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  36. eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary by Martin Panter · 9 years ago
  37. 5344da5 Issue #24402: Merge input() fix from 3.5 by Martin Panter · 9 years ago
  38. e02f8fc Issue #24402: Merge input() fix from 3.4 into 3.5 by Martin Panter · 9 years ago
  39. c9a6ab5 Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by Eryksun by Martin Panter · 9 years ago
  40. bd5f0e8 Hoist constant expression out of the inner loop. by Raymond Hettinger · 9 years ago
  41. 5098b58 Make comparison more consistent by Raymond Hettinger · 9 years ago
  42. 501b4a7 Use PyTuple_GET_SIZE like the adjacent code does. by Raymond Hettinger · 9 years ago
  43. f109414 Inline PyIter_Next() matching the other itertools code. by Raymond Hettinger · 9 years ago
  44. 8b2e8b6 Specify default values of semantic booleans in Argument Clinic generated signatures as booleans. by Serhiy Storchaka · 9 years ago
  45. 7e810a6 Use converter names instead of format units in Argument Clinic descriptions by Serhiy Storchaka · 9 years ago
  46. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  47. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  48. 0c39b1b Initialize variables to prevent GCC warnings by Victor Stinner · 9 years ago
  49. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  50. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  51. d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
  52. f9e227e Issue #20184: Add signature introspection for 30 of the builtins by Nick Coghlan · 10 years ago
  53. 98ea54c Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
  54. 9b33872 Issue #22146: Fix typo in __build_class__ error message by Zachary Ware · 10 years ago
  55. f2fb73f Issue #19362: Tweek len() doc and docstring to expand the indicated range of by Terry Jan Reedy · 10 years ago
  56. 2a54582 Issue 20620: Update the min()/max() docs for the new default argument. by Raymond Hettinger · 10 years ago
  57. 5edbb7b correct len signature in docstring (closes #21294) by Benjamin Peterson · 10 years ago
  58. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 10 years ago
  59. d45a46b merge 3.3 (#19910) by Benjamin Peterson · 10 years ago
  60. 933142a document that compile() can take bytes (closes #19910) by Benjamin Peterson · 10 years ago
  61. a4b7a75 Issue #3158: doctest can now find doctests in functions and methods by Zachary Ware · 11 years ago
  62. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  63. eaa2883 Issue #19512: builtin print() function uses an identifier instead of literal by Victor Stinner · 11 years ago
  64. ae9f161 Issue #19512: __build_class() builtin now uses an identifier for the "metaclass" string by Victor Stinner · 11 years ago
  65. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  66. b44562b Issue #19512: eval() and exec() now use an identifier for "__builtins__" string by Victor Stinner · 11 years ago
  67. 41bb43a Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle by Victor Stinner · 11 years ago
  68. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  69. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  70. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  71. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  72. 4ebf6d7 Issue #18560: Fix potential NULL pointer dereference in sum() by Christian Heimes · 11 years ago
  73. 704e2d3 Issue #18560: Fix potential NULL pointer dereference in sum() by Christian Heimes · 11 years ago
  74. 1e53bba Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError by Victor Stinner · 11 years ago
  75. acb362e Merge: #18424: PEP8ify the tense of the sum docstring. by R David Murray · 11 years ago
  76. 87ead11 #18424: PEP8ify the tense of the sum docstring. by R David Murray · 11 years ago
  77. 4d6018f Issue 18111: Add a default argument to min() and max() by Raymond Hettinger · 11 years ago
  78. e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 11 years ago
  79. 214a7d2 properly lookup the __round__ special method (closes #17722) by Benjamin Peterson · 11 years ago
  80. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 11 years ago
  81. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  82. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  83. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  84. eea1f5c Merge by Richard Oudkerk · 11 years ago
  85. 614c578 Issue #17619: Make input() check for Ctrl-C correctly on Windows. by Richard Oudkerk · 11 years ago
  86. 178e6fe #17178: merge with 3.3. by Ezio Melotti · 11 years ago
  87. 293ab97 #17178: merge with 3.2. by Ezio Melotti · 11 years ago
  88. b19ed57 #17178: update any()/all() docstrings to document their behavior with empty iterables. Patch by Ankur Ankan. by Ezio Melotti · 11 years ago
  89. f76f0ee compile doesn't accept code objects by Philip Jenvey · 11 years ago
  90. 42124a7 initialize map/filter/zip in _PyBuiltin_Init rather than the catch-all function by Benjamin Peterson · 12 years ago
  91. 66d1eb2 Merge 3.2. by Stefan Krah · 12 years ago
  92. 07795df Issue #15741: Fix potential NULL dereference. Found by Coverity. by Stefan Krah · 12 years ago
  93. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  94. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  95. e9175bd Fix issue #15607: Update the print builtin function docstring with the new flush keyword. by Senthil Kumaran · 12 years ago
  96. cb4996a Issue #15471: Don't use mutable object as default values for the by Brett Cannon · 12 years ago
  97. 722d3ae Issue #15508: Fix the docstring for __import__ to not mention negative by Brett Cannon · 12 years ago
  98. 3c76aa6 Remove unused variabile "plain" in builtin_exec. by Ezio Melotti · 12 years ago
  99. edc6018 Remove outdated statement by Antoine Pitrou · 12 years ago
  100. 3a37b83 merge 3.2 by Benjamin Peterson · 12 years ago