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