1. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  2. 48a2f8f #13054: sys.maxunicode is now always 0x10FFFF. by Ezio Melotti · 13 years ago
  3. fd85c3a fill_number() and format_string_internal() check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  4. dba2dee fill_number() ensures that the 'digits' string is ready by Victor Stinner · 13 years ago
  5. afbaa20 fill_char() can now propagate an error by Victor Stinner · 13 years ago
  6. 6c7a52a Check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  7. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  8. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  9. a1fe1f8 Merge 3.2: Issue #7732: Don't open a directory as a file anymore while by Victor Stinner · 13 years ago
  10. 53ffdc5 Issue #7732: Don't open a directory as a file anymore while importing a by Victor Stinner · 13 years ago
  11. 472d280 Issue #13002: Fix Visual Studio warning (not enough actual parameters). by Stefan Krah · 13 years ago
  12. a80b14c - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
  13. 916048d - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
  14. 9561d7c import.c: remove now useless arbitrary limit by Victor Stinner · 13 years ago
  15. 84b8e40 Merge 3.2: Fix the import machinery if there is an error on sys.path or sys.meta_path by Victor Stinner · 13 years ago
  16. 1619132 Fix the import machinery if there is an error on sys.path or sys.meta_path by Victor Stinner · 13 years ago
  17. 6f08f53 Merge 3.2 by Éric Araujo · 13 years ago
  18. 22d80bc Merge 3.2: Remove unused variable if Python is build without threads by Victor Stinner · 13 years ago
  19. 0af0306 Remove unused variable if Python is build without threads by Victor Stinner · 13 years ago
  20. 0224d4e accept bytes for the AST 'string' type by Benjamin Peterson · 13 years ago
  21. ea281a5 include header with PyAST_Validate by Benjamin Peterson · 13 years ago
  22. 832bfe2 add a AST validator (closes #12575) by Benjamin Peterson · 13 years ago
  23. e249841 add a asdl bytes type, so Bytes.s be properly typechecked by Benjamin Peterson · 13 years ago
  24. 405f32c plug refleak by Benjamin Peterson · 13 years ago
  25. 4f921c2 bytes -> bytearray by Benjamin Peterson · 13 years ago
  26. ce071ca bytes should be verboten in sum() (fixes #12654) by Benjamin Peterson · 13 years ago
  27. 0bbacc6 Branch merge by Éric Araujo · 13 years ago
  28. 906b88f Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format. by Eli Bendersky · 13 years ago
  29. 2527796 Merge from 3.2 (#10318, #12255, #12043, #12417 and other fixes) by Éric Araujo · 13 years ago
  30. 6c0ba44 Fix style in code added by edba722f3b02 by Éric Araujo · 13 years ago
  31. 5a24d82 Add a test for issue #1813: getlocale() failing under a Turkish locale by Antoine Pitrou · 13 years ago
  32. cf9d3c0 Issue #1813: Fix codec lookup under Turkish locales. by Antoine Pitrou · 13 years ago
  33. f23339a Issue 12620: Make pendingbusy flag static to Py_MakePendingCalls(). by Charles-François Natali · 13 years ago
  34. 8a4b42b merge 3.2 by Benjamin Peterson · 13 years ago
  35. 180e635 None is ok for identifiers but not strings by Benjamin Peterson · 13 years ago
  36. 86f088e merge 3.2 by Benjamin Peterson · 13 years ago
  37. 2193d2b type check AST strings and identifiers by Benjamin Peterson · 13 years ago
  38. efad244 hardcode the old svn __version__ by Benjamin Peterson · 13 years ago
  39. bd9c655 merge heads by Benjamin Peterson · 13 years ago
  40. 76f7f4d excise the remains of STOP_CODE, which hasn't done anything useful for years by Benjamin Peterson · 13 years ago
  41. 52a7d98 Make warnings accept a callable for showwarnings instead of by Brett Cannon · 13 years ago
  42. 0bd152c remove ast.__version__ (closes #12273) by Benjamin Peterson · 13 years ago
  43. e92cd0c merge 3.2 (#11627) by Benjamin Peterson · 13 years ago
  44. 5afa03a catch nasty exception classes with __new__ that doesn't return a exception (closes #11627) by Benjamin Peterson · 13 years ago
  45. ecf4fda Py_BuildValue("C") supports non-BMP characters on narrow build by Victor Stinner · 13 years ago
  46. 3700920 Issue #11863: Remove support for legacy systems deprecated in Python 3.2 by Antoine Pitrou · 13 years ago
  47. 022ae22 Issue #11863: remove unused file Python/thread_wince.h by Antoine Pitrou · 13 years ago
  48. 9797e29 merge 3.2 by Benjamin Peterson · 13 years ago
  49. bb4a747 start out this branch always with filename NULL by Benjamin Peterson · 13 years ago
  50. 87e78ce Issue #12469: partial revert of 024827a9db64, freebsd6 thread initialization by Victor Stinner · 13 years ago
  51. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  52. d64e8a7 Issue #9642: Fix filesystem encoding initialization: use the ANSI code page on by Victor Stinner · 13 years ago
  53. 401d197 merge 3.2 by Benjamin Peterson · 13 years ago
  54. a55007a plug refleak by Benjamin Peterson · 13 years ago
  55. 5a21e83 (merge 3.2) Issue #12467: warnings: fix a race condition if a warning is by Victor Stinner · 13 years ago
  56. 8b0508e Issue #12467: warnings: fix a race condition if a warning is emitted at by Victor Stinner · 13 years ago
  57. 9bfd0de no one passes NULL here (or should anyway) by Benjamin Peterson · 13 years ago
  58. 8788024 convert generator exc state functions into static functions by Benjamin Peterson · 13 years ago
  59. 536feac merge 3.2 by Benjamin Peterson · 13 years ago
  60. ac91341 never retain a generator's caller's exception state on the generator after a yield/return by Benjamin Peterson · 13 years ago
  61. 7b7099c merge 3.2 (#12475) by Benjamin Peterson · 13 years ago
  62. d2ed630 merge heads by Benjamin Peterson · 13 years ago
  63. 83195c3 restore a generator's caller's exception state both on yield and (last) return by Benjamin Peterson · 13 years ago
  64. aac0f75 Correct uninitialized data problem in marshal code. by Vinay Sajip · 13 years ago
  65. 3232284 Removed breaking typo accidentally introduced during merge with 3.2. by Vinay Sajip · 13 years ago
  66. 65897a3 Closes #12291 for 3.3 - merged fix from 3.2. by Vinay Sajip · 13 years ago
  67. 5bdae3b Closes #12291: Fixed bug which was found when doing multiple loads from one stream. by Vinay Sajip · 13 years ago
  68. 9d872e1 fix possibily uninitialized memory usage (closes #12474) by Benjamin Peterson · 13 years ago
  69. 609da58 store the current scope on the stack right away by Benjamin Peterson · 13 years ago
  70. c2575d5 remove VISIT_*_IN_BLOCK macros by Benjamin Peterson · 13 years ago
  71. 9003760 map cells to arg slots at code creation time (closes #12399) by Benjamin Peterson · 13 years ago
  72. e71db44 Issue #12392: fix thread initialization on FreeBSD 6 by Victor Stinner · 13 years ago
  73. e109c70 give the names of missing positional or keyword-only arguments (closes #12356) by Benjamin Peterson · 13 years ago
  74. 28db0fd merge 3.2 by Benjamin Peterson · 13 years ago
  75. b7149ca fix indentation by Benjamin Peterson · 13 years ago
  76. 267ca6c merge 3.2 by Benjamin Peterson · 13 years ago
  77. f63d615 fix indentation by Benjamin Peterson · 13 years ago
  78. d417d01 call_find_module() handles dup() failure: raise an OSError exception by Victor Stinner · 13 years ago
  79. 925ef39 find_module_path_list() fails if _Py_fopen() failed and raised an exception by Victor Stinner · 13 years ago
  80. e7c15fa bump magic for super closure change by Benjamin Peterson · 13 years ago
  81. f5ff223 use a invalid name for the __class__ closure for super() (closes #12370) by Benjamin Peterson · 13 years ago
  82. 589f89e Removed a Windows 9x trick used before LoadLibraryExW. by Brian Curtin · 13 years ago
  83. b204a42 greatly improve argument parsing error messages (closes #12265) by Benjamin Peterson · 13 years ago
  84. 48deae1 some horrible preprocessing tricks to automatically update the tag by Benjamin Peterson · 13 years ago
  85. 623e8b8 Removed some unused local variables. by Vinay Sajip · 13 years ago
  86. 04a90b4 bump ast version by Benjamin Peterson · 13 years ago
  87. 43af12b unify TryExcept and TryFinally (closes #12199) by Benjamin Peterson · 13 years ago
  88. 61be422 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  89. 056f5b9 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  90. 9a7c524 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  91. d8255e0 merge 3.2 by Benjamin Peterson · 13 years ago
  92. a290bac merge 3.1 by Benjamin Peterson · 13 years ago
  93. 0a5dad9 fix spacing by Benjamin Peterson · 13 years ago
  94. 4a0f20f merge 3.2 by Benjamin Peterson · 13 years ago
  95. 5218853 merge 3.1 by Benjamin Peterson · 13 years ago
  96. 74897ba fix indentation by Benjamin Peterson · 13 years ago
  97. 7f670e5 bump ast version by Benjamin Peterson · 13 years ago
  98. bf1bbc1 reflect with statements with multiple items in the AST (closes #12106) by Benjamin Peterson · 13 years ago
  99. 4f2dab5 Revert my commit 7ba176c2f558: "Avoid useless "++" at the end of functions by Victor Stinner · 13 years ago
  100. 43b0686 try to use the same str object for all code filenames when compiling or unmarshalling (#12190) by Benjamin Peterson · 13 years ago