1. 1138944 only incref when using borrowing functions by Benjamin Peterson · 12 years ago
  2. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  3. bf35c15 Fix refleak: PyObject_GetItem returns a new reference, not a borrowed one like PyDict_GetItem. by Antoine Pitrou · 12 years ago
  4. b0b2242 Issue #14385: Support other types than dict for __builtins__ by Victor Stinner · 12 years ago
  5. 368b4b7 Guard an LLTRACE variable to silence an unused variable warning. by Brett Cannon · 12 years ago
  6. 3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions by Victor Stinner · 12 years ago
  7. 302e790 use identifier api by Benjamin Peterson · 12 years ago
  8. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 12 years ago
  9. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  10. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
  11. 0a239e9 Fix compilation with C89 compilers (Windows...) by Amaury Forgeot d'Arc · 13 years ago
  12. 0296a56 NULL and no exception set from tp_iternext means StopIteration by Benjamin Peterson · 13 years ago
  13. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  14. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  15. 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
  16. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  17. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  18. d2a915d ceval.c: restore str+=str optimization by Victor Stinner · 13 years ago
  19. 811c2f1 remove "fast-path" for (i)adding strings by Benjamin Peterson · 13 years ago
  20. bec0fda Remove commented code: str+=str is no more super-optimized by Victor Stinner · 13 years ago
  21. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  22. f23339a Issue 12620: Make pendingbusy flag static to Py_MakePendingCalls(). by Charles-François Natali · 13 years ago
  23. 76f7f4d excise the remains of STOP_CODE, which hasn't done anything useful for years by Benjamin Peterson · 13 years ago
  24. e92cd0c merge 3.2 (#11627) by Benjamin Peterson · 13 years ago
  25. 5afa03a catch nasty exception classes with __new__ that doesn't return a exception (closes #11627) by Benjamin Peterson · 13 years ago
  26. 9bfd0de no one passes NULL here (or should anyway) by Benjamin Peterson · 13 years ago
  27. 8788024 convert generator exc state functions into static functions by Benjamin Peterson · 13 years ago
  28. 536feac merge 3.2 by Benjamin Peterson · 13 years ago
  29. ac91341 never retain a generator's caller's exception state on the generator after a yield/return by Benjamin Peterson · 13 years ago
  30. 7b7099c merge 3.2 (#12475) by Benjamin Peterson · 13 years ago
  31. 83195c3 restore a generator's caller's exception state both on yield and (last) return by Benjamin Peterson · 13 years ago
  32. 9003760 map cells to arg slots at code creation time (closes #12399) by Benjamin Peterson · 13 years ago
  33. e109c70 give the names of missing positional or keyword-only arguments (closes #12356) by Benjamin Peterson · 13 years ago
  34. b204a42 greatly improve argument parsing error messages (closes #12265) by Benjamin Peterson · 13 years ago
  35. fc20b0c Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  36. 0d5e52d Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  37. 0a5f65a Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s by Victor Stinner · 13 years ago
  38. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  39. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  40. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  41. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  42. ed4c711 Remove filename variable from ceval.c by Victor Stinner · 13 years ago
  43. 8ad4cd9 Merged revisions 87796 via svnmerge from by David Malcolm · 14 years ago
  44. f1397ad Issue #10655: Fix the build on PowerPC on Linux with GCC when building with by David Malcolm · 14 years ago
  45. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  46. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  47. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  48. a000645 ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename) by Victor Stinner · 14 years ago
  49. aa7fbd9 revert r85003, poorly considered; breaks tests by Benjamin Peterson · 14 years ago
  50. 81437c9 don't count keyword arguments as positional #9943 by Benjamin Peterson · 14 years ago
  51. 1df1536 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly by Antoine Pitrou · 14 years ago
  52. e208b7c typo by Benjamin Peterson · 14 years ago
  53. d0de25d use Py_REFCNT by Benjamin Peterson · 14 years ago
  54. d2be5b4 remove gil_drop_request in --without-threads by Benjamin Peterson · 14 years ago
  55. 00ebe2c use DISPATCH() instead of continue by Benjamin Peterson · 14 years ago
  56. ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 14 years ago
  57. 74a69fa Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced by Antoine Pitrou · 14 years ago
  58. 4a3733d Issue #9425: save/restore exception on filename encoding by Victor Stinner · 14 years ago
  59. 042b128 Issue #9203: Computed gotos are now enabled by default on supported by Antoine Pitrou · 14 years ago
  60. 20f9c3c revert unintended changes by Benjamin Peterson · 14 years ago
  61. 013783c move test_trace.py so as not to conflict with future tests for the trace module by Benjamin Peterson · 14 years ago
  62. 0310a83 #3071: tell how many values were expected when unpacking too many. by Georg Brandl · 14 years ago
  63. 88968ad only take into account positional arguments count in related error messages by Benjamin Peterson · 14 years ago
  64. c87901d Merged revisions 82181 via svnmerge from by Stefan Krah · 14 years ago
  65. b7e1010 Issue #8930: Remaining indentation fixes after the Grand Unified Indenting. by Stefan Krah · 14 years ago
  66. 08ec84c use atomic structures in non-thread version by Benjamin Peterson · 14 years ago
  67. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  68. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  69. 70cce42 read eval_breaker with atomic api with computed gotos by Benjamin Peterson · 14 years ago
  70. 3937083 Make (most of) Python's tests pass under Thread Sanitizer. by Jeffrey Yasskin · 14 years ago
  71. 8689a10 Merged revisions 79555 via svnmerge from by Antoine Pitrou · 14 years ago
  72. 7588b8b nest if for clarity by Benjamin Peterson · 14 years ago
  73. afcee8b count keyword only arguments as part of the total by Benjamin Peterson · 14 years ago
  74. f3b7a25 Merged revisions 78028 via svnmerge from by Benjamin Peterson · 14 years ago
  75. 232ecb8 cleanup a bit by Benjamin Peterson · 14 years ago
  76. 38c36f8 Merged revisions 78875 via svnmerge from by Victor Stinner · 14 years ago
  77. a567a77 Merged revisions 79205,79219,79228,79230,79232-79233,79235,79237 via svnmerge from by Benjamin Peterson · 14 years ago
  78. 3f1af5c Issue #6697: use %U format instead of _PyUnicode_AsString(), because by Victor Stinner · 14 years ago
  79. d01444d Merged revisions 78766 via svnmerge from by Benjamin Peterson · 14 years ago
  80. ae5f2f4 prevent generator finalization from invalidating sys.exc_info() #7173 by Benjamin Peterson · 14 years ago
  81. f8b60b2 fix comment by Benjamin Peterson · 15 years ago
  82. 074e5ed Merge in the new GIL. by Antoine Pitrou · 15 years ago
  83. ee2dd4a Merged revisions 75984 via svnmerge from by Mark Dickinson · 15 years ago
  84. a25b131 Merged revisions 75982 via svnmerge from by Mark Dickinson · 15 years ago
  85. b4d286d silence with (void) two warnings about computed and unused value of POP() by Ezio Melotti · 15 years ago
  86. bfc3099 Merged revisions 73750 via svnmerge from by Alexandre Vassalotti · 15 years ago
  87. 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
  88. b1715f1 use stack altering macros here by Benjamin Peterson · 15 years ago
  89. 6d46a91 Merged revisions 73614-73615 via svnmerge from by Benjamin Peterson · 15 years ago
  90. ac8c730 this is better written as an assertion by Benjamin Peterson · 15 years ago
  91. fec42da update comments by Benjamin Peterson · 15 years ago
  92. 176101d correctly rearrange the stack in the exception case of WITH_CLEANUP by Benjamin Peterson · 15 years ago
  93. 876b2f2 Merged revisions 72912,72920,72940 via svnmerge from by Benjamin Peterson · 15 years ago
  94. 8e124f3 Merged revisions 73064 via svnmerge from by Antoine Pitrou · 15 years ago
  95. efb06b0 Merged revisions 69811,69947 via svnmerge from by Benjamin Peterson · 15 years ago
  96. 9de7ec7 http://bugs.python.org/issue4715 by Jeffrey Yasskin · 15 years ago
  97. b52ec78 Issue #4753: By enabling a configure option named '--with-computed-gotos' by Antoine Pitrou · 16 years ago
  98. b4ddfa4 fix compiler warning by Benjamin Peterson · 16 years ago
  99. e5bf383 Merged revisions 68460 via svnmerge from by Benjamin Peterson · 16 years ago
  100. f289ae6 Merged revisions 67818 via svnmerge from by Antoine Pitrou · 16 years ago