1. c24c810 Issue #3080: Use %R to format module name in error messages by Victor Stinner · 13 years ago
  2. 974389d Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import" by Victor Stinner · 13 years ago
  3. 2e5f11a Issue #3080: PyImport_ImportModuleNoBlock() uses Unicode by Victor Stinner · 13 years ago
  4. 41c5fec Issue #3080: load_module() expects name and path as Unicode by Victor Stinner · 13 years ago
  5. 2f42ae5 Issue #3080: Use Unicode to import source and compiled modules by Victor Stinner · 13 years ago
  6. c9abda0 Issue #3080: get_sourcefile(), make_source_pathname(), load_package() by Victor Stinner · 13 years ago
  7. d68c2cf Issue #3080: Create find_module_path() subfunction by Victor Stinner · 13 years ago
  8. 3758028 Issue #3080: Create find_module_path_list() subfunction by Victor Stinner · 13 years ago
  9. c696316 Issue #3080: Remove useless name buffer from find_module() by Victor Stinner · 13 years ago
  10. 7d8b77c Issue #3080: find_module() initialize buf and *p_fp by Victor Stinner · 13 years ago
  11. fefd70c Issue #3080: _PyImport_LoadDynamicModule() uses Unicode for name and path by Victor Stinner · 13 years ago
  12. 4d6c1c4 Issue #3080: _PyWin_FindRegisteredModule() returns the path as Unicode by Victor Stinner · 13 years ago
  13. 21fcd0c Issue #3080: Use PyUnicode_InternFromString() for builtins by Victor Stinner · 13 years ago
  14. 9587286 Issue #3080: Import builtins using Unicode strings by Victor Stinner · 13 years ago
  15. 53dc735 Issue #3080: Add PyImport_ImportFrozenModuleObject() by Victor Stinner · 13 years ago
  16. 9464d61 Issue #3080: PyImport_Cleanup() uses Unicode by Victor Stinner · 13 years ago
  17. 942003c import.c: replace tab by spaces by Victor Stinner · 13 years ago
  18. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  19. 0661e91 Issue 11510: Fix BUILD_SET optimizer bug. by Raymond Hettinger · 13 years ago
  20. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 13 years ago
  21. 736e7fc Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 by Jesus Cea · 13 years ago
  22. c9723d0 use only the hex version, since the revno is unreliable across repos by Benjamin Peterson · 13 years ago
  23. 678da9f bump ast version by Benjamin Peterson · 13 years ago
  24. 6cb2b92 convert ast versioning to mercurial by Benjamin Peterson · 13 years ago
  25. 17b880a Issue #11244: The peephole optimizer is now able to constant-fold by Antoine Pitrou · 13 years ago
  26. 776e586 Remove sys.subversion and svn build identification leftovers. by Georg Brandl · 13 years ago
  27. fe09a54 Merge build identification to default branch. by Georg Brandl · 13 years ago
  28. 13039c8 Merge build identification to 3.2 branch. by Georg Brandl · 13 years ago
  29. 1ca2e79 Commit the hg build identification patch from the pymigr repo. by Georg Brandl · 13 years ago
  30. 27ee089 Issue #3080: Add PyImport_AddModuleObject() and PyImport_ExecCodeModuleObject() by Victor Stinner · 13 years ago
  31. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  32. 3f0df3b Merged revisions 88430 via svnmerge from by Georg Brandl · 13 years ago
  33. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  34. c0f1a1a Issue #11272: Fix input() and sys.stdin for Windows newline by Victor Stinner · 13 years ago
  35. 3eeee83 dynload_dl.c: replace tabs by spaces by Victor Stinner · 13 years ago
  36. 501c09a Issue #3080: Mark _PyImport_FindBuiltin() argument as constant by Victor Stinner · 13 years ago
  37. 42040fb Issue #3080: Remove unused argument of _PyImport_GetDynLoadFunc() by Victor Stinner · 13 years ago
  38. 9b99b44 Issue #3080: Mark PyWin_FindRegisteredModule() as private by Victor Stinner · 13 years ago
  39. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  40. ed4c711 Remove filename variable from ceval.c by Victor Stinner · 13 years ago
  41. 59e87bd #730467: Another small AIX fix. by Georg Brandl · 14 years ago
  42. 6a002c0 Fix the GIL with subinterpreters. Hopefully this will allow mod_wsgi to work with 3.2. by Antoine Pitrou · 14 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. 90e8f8c Fix count of flag fields. Being one short caused the 'quiet' option not to print. by Raymond Hettinger · 14 years ago
  46. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  47. 6ab8e82 Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred by Victor Stinner · 14 years ago
  48. a093d0d Issue #8992: Simplify addcleanup() API by Victor Stinner · 14 years ago
  49. b3c9e07 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 14 years ago
  50. beef5dc Merged revisions 87607 via svnmerge from by Benjamin Peterson · 14 years ago
  51. 834cb39 update copyright to 2011 by Benjamin Peterson · 14 years ago
  52. 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 14 years ago
  53. 92be939 Issue #10780: PyErr_SetFromWindowsErrWithFilename() and by Victor Stinner · 14 years ago
  54. cb428f0 Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem by Victor Stinner · 14 years ago
  55. 810023d Issue #8844: Regular and recursive lock acquisitions can now be interrupted by Antoine Pitrou · 14 years ago
  56. 13d49ee Issue #10601: sys.displayhook uses 'backslashreplace' error handler on by Victor Stinner · 14 years ago
  57. 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
  58. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  59. ebc0052 import: use PyUnicode_FSConverter to support bytes path and PEP 383 by Victor Stinner · 14 years ago
  60. 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
  61. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  62. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  63. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  64. 0a4dae5 fix refleak by Benjamin Peterson · 14 years ago
  65. 5a96b52 Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by Neil by Antoine Pitrou · 14 years ago
  66. 787cddc Merged revisions 86545 via svnmerge from by Benjamin Peterson · 14 years ago
  67. d8f6597 new plan: functions that want 'tmp' can declare it by Benjamin Peterson · 14 years ago
  68. e82c169 Merged revisions 86540 via svnmerge from by Benjamin Peterson · 14 years ago
  69. 0e9e98e c89 declarations by Benjamin Peterson · 14 years ago
  70. aab9585 Merged revisions 86538 via svnmerge from by Benjamin Peterson · 14 years ago
  71. 5b06681 use %R format code; fixes invalid dereferencing #10391 by Benjamin Peterson · 14 years ago
  72. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  73. cf9f980 Issue #10372: Import the warnings module only after the IO library is by Antoine Pitrou · 14 years ago
  74. 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 14 years ago
  75. 19de4c3 _Py_char2wchar() frees the memory on conversion error by Victor Stinner · 14 years ago
  76. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  77. 3d89751 Merged revisions 85980 via svnmerge from by Hirokazu Yamamoto · 14 years ago
  78. daf83ac Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. by Hirokazu Yamamoto · 14 years ago
  79. c8850d0 Merged revisions 85817,85904 via svnmerge from by Benjamin Peterson · 14 years ago
  80. a95e977 decrement offset when it points to a newline (#10186 followup) by Benjamin Peterson · 14 years ago
  81. 98e2b45 Merged revisions 85896 via svnmerge from by Antoine Pitrou · 14 years ago
  82. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  83. 07e4f15 sys_update_path(): update sys.path even if argc==0 by Victor Stinner · 14 years ago
  84. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  85. d4519c1 tighten loop by Benjamin Peterson · 14 years ago
  86. 9831611 Merged revisions 85814 via svnmerge from by Benjamin Peterson · 14 years ago
  87. 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 14 years ago
  88. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  89. 3aa6cea Issue #10077: Fix logging of site module errors at startup. by Victor Stinner · 14 years ago
  90. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  91. 4d3d08f Merged revisions 85757 via svnmerge from by Benjamin Peterson · 14 years ago
  92. b8ffb60 fix uninitialized struct member #10152 by Benjamin Peterson · 14 years ago
  93. 15244f7 Recorded merge of revisions 85569-85570 via svnmerge from by Victor Stinner · 14 years ago
  94. e474309 initfsencoding(): get_codeset() failure is now a fatal error by Victor Stinner · 14 years ago
  95. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  96. c049982 compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, by Victor Stinner · 14 years ago
  97. 15a71cd PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of by Victor Stinner · 14 years ago
  98. ed7916d find_module(): use FS encoding to display the missing __init__ warning by Victor Stinner · 14 years ago
  99. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  100. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago