1. fcb88c4 Issue #11393: _Py_DumpTraceback() writes the header even if there is no frame by Victor Stinner · 13 years ago
  2. d727e23 Issue #11393: The fault handler handles also SIGABRT by Victor Stinner · 13 years ago
  3. dd810dd Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError if by Victor Stinner · 13 years ago
  4. 27181ac sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not by Victor Stinner · 13 years ago
  5. 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 13 years ago
  6. d854562 Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. by Antoine Pitrou · 13 years ago
  7. 7899acf Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. by Antoine Pitrou · 13 years ago
  8. be3bd57 Remove traces of division_warning left over from Python 2 (#10998) by Éric Araujo · 13 years ago
  9. 442c9b9 Make importlib compatible with __import__ by "fixing" code.co_filename paths. by Brett Cannon · 13 years ago
  10. 7c9e803 Issue #11244: Remove outdated peepholer check that was preventing the peepholer from folding -0 and -0.0. Thanks Eugene Toder for the patch. by Mark Dickinson · 13 years ago
  11. e9ddbf6 Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395 by Victor Stinner · 13 years ago
  12. 9c61e24 Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the file by Victor Stinner · 13 years ago
  13. 0a5f65a Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s by Victor Stinner · 13 years ago
  14. 6ced7c4 Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead of by Victor Stinner · 13 years ago
  15. 9c4efe5 Fix #11586: typo in initfsencoding() by Victor Stinner · 13 years ago
  16. 4ca2809 Fix #11586: typo in initfsencoding() by Victor Stinner · 13 years ago
  17. 6ae1e7f Issue #3080: imp.load_module() accepts None for the module path by Victor Stinner · 13 years ago
  18. cc9564e Issue #3080: Fix call to case_ok() in find_init_module() by Victor Stinner · 13 years ago
  19. 1304f2d Issue #3080: Fix case_ok() using case_bytes() by Victor Stinner · 13 years ago
  20. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  21. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  22. 29dcaad Issue 11510: Fix BUILD_SET optimizer bug. by Raymond Hettinger · 13 years ago
  23. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  24. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  25. fe93faf Issue #3080: Add PyImport_ImportModuleLevelObject() function by Victor Stinner · 13 years ago
  26. 98dbba5 Issue #3080: Use repr() to format the module name on error by Victor Stinner · 13 years ago
  27. ccbf475 Fix imp.cache_from_source() if the directory name contains a dot by Victor Stinner · 13 years ago
  28. fe19d21 Issue #3080: imp.new_module() uses Unicode by Victor Stinner · 13 years ago
  29. 2fd76e4 Issue #3080: find_module() returns the path as Unicode by Victor Stinner · 13 years ago
  30. c9a271c Issue #3080: case_ok() expects Unicode strings by Victor Stinner · 13 years ago
  31. 547a2a6 Issue #3080: find_init_module() expects Unicode by Victor Stinner · 13 years ago
  32. d029621 Issue #3080: Refactor find_module_path(), use return instead of break by Victor Stinner · 13 years ago
  33. df75a02 Issue #3080: find_module() sets an empty path for builtin and frozen modules by Victor Stinner · 13 years ago
  34. 533d783 Issue #3080: Rename some path variables to path_list by Victor Stinner · 13 years ago
  35. ad3c03b Issue #3080: find_module() expects module fullname and subname as Unicode by Victor Stinner · 13 years ago
  36. 58d3711 Issue #3080: Drop OS/2 support for the import machinery by Victor Stinner · 13 years ago
  37. 9599de5 Issue #3080: Reindent and simplify import_submodule() by Victor Stinner · 13 years ago
  38. c24c810 Issue #3080: Use %R to format module name in error messages by Victor Stinner · 13 years ago
  39. 974389d Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import" by Victor Stinner · 13 years ago
  40. 2e5f11a Issue #3080: PyImport_ImportModuleNoBlock() uses Unicode by Victor Stinner · 13 years ago
  41. 41c5fec Issue #3080: load_module() expects name and path as Unicode by Victor Stinner · 13 years ago
  42. 2f42ae5 Issue #3080: Use Unicode to import source and compiled modules by Victor Stinner · 13 years ago
  43. c9abda0 Issue #3080: get_sourcefile(), make_source_pathname(), load_package() by Victor Stinner · 13 years ago
  44. d68c2cf Issue #3080: Create find_module_path() subfunction by Victor Stinner · 13 years ago
  45. 3758028 Issue #3080: Create find_module_path_list() subfunction by Victor Stinner · 13 years ago
  46. c696316 Issue #3080: Remove useless name buffer from find_module() by Victor Stinner · 13 years ago
  47. 7d8b77c Issue #3080: find_module() initialize buf and *p_fp by Victor Stinner · 13 years ago
  48. fefd70c Issue #3080: _PyImport_LoadDynamicModule() uses Unicode for name and path by Victor Stinner · 13 years ago
  49. 4d6c1c4 Issue #3080: _PyWin_FindRegisteredModule() returns the path as Unicode by Victor Stinner · 13 years ago
  50. 21fcd0c Issue #3080: Use PyUnicode_InternFromString() for builtins by Victor Stinner · 13 years ago
  51. 9587286 Issue #3080: Import builtins using Unicode strings by Victor Stinner · 13 years ago
  52. 53dc735 Issue #3080: Add PyImport_ImportFrozenModuleObject() by Victor Stinner · 13 years ago
  53. 9464d61 Issue #3080: PyImport_Cleanup() uses Unicode by Victor Stinner · 13 years ago
  54. 942003c import.c: replace tab by spaces by Victor Stinner · 13 years ago
  55. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  56. 0661e91 Issue 11510: Fix BUILD_SET optimizer bug. by Raymond Hettinger · 13 years ago
  57. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 13 years ago
  58. 736e7fc Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 by Jesus Cea · 13 years ago
  59. c9723d0 use only the hex version, since the revno is unreliable across repos by Benjamin Peterson · 13 years ago
  60. 678da9f bump ast version by Benjamin Peterson · 13 years ago
  61. 6cb2b92 convert ast versioning to mercurial by Benjamin Peterson · 13 years ago
  62. 17b880a Issue #11244: The peephole optimizer is now able to constant-fold by Antoine Pitrou · 13 years ago
  63. 776e586 Remove sys.subversion and svn build identification leftovers. by Georg Brandl · 13 years ago
  64. fe09a54 Merge build identification to default branch. by Georg Brandl · 13 years ago
  65. 13039c8 Merge build identification to 3.2 branch. by Georg Brandl · 13 years ago
  66. 1ca2e79 Commit the hg build identification patch from the pymigr repo. by Georg Brandl · 13 years ago
  67. 27ee089 Issue #3080: Add PyImport_AddModuleObject() and PyImport_ExecCodeModuleObject() by Victor Stinner · 13 years ago
  68. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  69. 3f0df3b Merged revisions 88430 via svnmerge from by Georg Brandl · 13 years ago
  70. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  71. c0f1a1a Issue #11272: Fix input() and sys.stdin for Windows newline by Victor Stinner · 13 years ago
  72. 3eeee83 dynload_dl.c: replace tabs by spaces by Victor Stinner · 13 years ago
  73. 501c09a Issue #3080: Mark _PyImport_FindBuiltin() argument as constant by Victor Stinner · 13 years ago
  74. 42040fb Issue #3080: Remove unused argument of _PyImport_GetDynLoadFunc() by Victor Stinner · 13 years ago
  75. 9b99b44 Issue #3080: Mark PyWin_FindRegisteredModule() as private by Victor Stinner · 13 years ago
  76. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  77. ed4c711 Remove filename variable from ceval.c by Victor Stinner · 13 years ago
  78. 59e87bd #730467: Another small AIX fix. by Georg Brandl · 14 years ago
  79. 6a002c0 Fix the GIL with subinterpreters. Hopefully this will allow mod_wsgi to work with 3.2. by Antoine Pitrou · 14 years ago
  80. 8ad4cd9 Merged revisions 87796 via svnmerge from by David Malcolm · 14 years ago
  81. f1397ad Issue #10655: Fix the build on PowerPC on Linux with GCC when building with by David Malcolm · 14 years ago
  82. 90e8f8c Fix count of flag fields. Being one short caused the 'quiet' option not to print. by Raymond Hettinger · 14 years ago
  83. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  84. 6ab8e82 Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred by Victor Stinner · 14 years ago
  85. a093d0d Issue #8992: Simplify addcleanup() API by Victor Stinner · 14 years ago
  86. b3c9e07 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 14 years ago
  87. beef5dc Merged revisions 87607 via svnmerge from by Benjamin Peterson · 14 years ago
  88. 834cb39 update copyright to 2011 by Benjamin Peterson · 14 years ago
  89. 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 14 years ago
  90. 92be939 Issue #10780: PyErr_SetFromWindowsErrWithFilename() and by Victor Stinner · 14 years ago
  91. cb428f0 Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem by Victor Stinner · 14 years ago
  92. 810023d Issue #8844: Regular and recursive lock acquisitions can now be interrupted by Antoine Pitrou · 14 years ago
  93. 13d49ee Issue #10601: sys.displayhook uses 'backslashreplace' error handler on by Victor Stinner · 14 years ago
  94. 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
  95. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  96. ebc0052 import: use PyUnicode_FSConverter to support bytes path and PEP 383 by Victor Stinner · 14 years ago
  97. b2ddf79 Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!) by Nick Coghlan · 14 years ago
  98. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  99. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  100. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago