1. 48deae1 some horrible preprocessing tricks to automatically update the tag by Benjamin Peterson · 13 years ago
  2. 25095b2 Remove useless assignments by Victor Stinner · 13 years ago
  3. 04778a8 make PyImport_ImportModuleLevel's first arg const like similiar functions (closes #12173) by Benjamin Peterson · 13 years ago
  4. 783c82c Close #11619: write_compiled_module() doesn't encode the filename by Victor Stinner · 13 years ago
  5. fe7c5b5 Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error. by Victor Stinner · 13 years ago
  6. 442c9b9 Make importlib compatible with __import__ by "fixing" code.co_filename paths. by Brett Cannon · 13 years ago
  7. e9ddbf6 Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395 by Victor Stinner · 13 years ago
  8. 9c61e24 Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the file by Victor Stinner · 13 years ago
  9. 6ae1e7f Issue #3080: imp.load_module() accepts None for the module path by Victor Stinner · 13 years ago
  10. cc9564e Issue #3080: Fix call to case_ok() in find_init_module() by Victor Stinner · 13 years ago
  11. 1304f2d Issue #3080: Fix case_ok() using case_bytes() by Victor Stinner · 13 years ago
  12. fe93faf Issue #3080: Add PyImport_ImportModuleLevelObject() function by Victor Stinner · 13 years ago
  13. 98dbba5 Issue #3080: Use repr() to format the module name on error by Victor Stinner · 13 years ago
  14. ccbf475 Fix imp.cache_from_source() if the directory name contains a dot by Victor Stinner · 13 years ago
  15. fe19d21 Issue #3080: imp.new_module() uses Unicode by Victor Stinner · 13 years ago
  16. 2fd76e4 Issue #3080: find_module() returns the path as Unicode by Victor Stinner · 13 years ago
  17. c9a271c Issue #3080: case_ok() expects Unicode strings by Victor Stinner · 13 years ago
  18. 547a2a6 Issue #3080: find_init_module() expects Unicode by Victor Stinner · 13 years ago
  19. d029621 Issue #3080: Refactor find_module_path(), use return instead of break by Victor Stinner · 13 years ago
  20. df75a02 Issue #3080: find_module() sets an empty path for builtin and frozen modules by Victor Stinner · 13 years ago
  21. 533d783 Issue #3080: Rename some path variables to path_list by Victor Stinner · 13 years ago
  22. ad3c03b Issue #3080: find_module() expects module fullname and subname as Unicode by Victor Stinner · 13 years ago
  23. 58d3711 Issue #3080: Drop OS/2 support for the import machinery by Victor Stinner · 13 years ago
  24. 9599de5 Issue #3080: Reindent and simplify import_submodule() by Victor Stinner · 13 years ago
  25. c24c810 Issue #3080: Use %R to format module name in error messages by Victor Stinner · 13 years ago
  26. 974389d Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import" by Victor Stinner · 13 years ago
  27. 2e5f11a Issue #3080: PyImport_ImportModuleNoBlock() uses Unicode by Victor Stinner · 13 years ago
  28. 41c5fec Issue #3080: load_module() expects name and path as Unicode by Victor Stinner · 13 years ago
  29. 2f42ae5 Issue #3080: Use Unicode to import source and compiled modules by Victor Stinner · 13 years ago
  30. c9abda0 Issue #3080: get_sourcefile(), make_source_pathname(), load_package() by Victor Stinner · 13 years ago
  31. d68c2cf Issue #3080: Create find_module_path() subfunction by Victor Stinner · 13 years ago
  32. 3758028 Issue #3080: Create find_module_path_list() subfunction by Victor Stinner · 13 years ago
  33. c696316 Issue #3080: Remove useless name buffer from find_module() by Victor Stinner · 13 years ago
  34. 7d8b77c Issue #3080: find_module() initialize buf and *p_fp by Victor Stinner · 13 years ago
  35. fefd70c Issue #3080: _PyImport_LoadDynamicModule() uses Unicode for name and path by Victor Stinner · 13 years ago
  36. 4d6c1c4 Issue #3080: _PyWin_FindRegisteredModule() returns the path as Unicode by Victor Stinner · 13 years ago
  37. 21fcd0c Issue #3080: Use PyUnicode_InternFromString() for builtins by Victor Stinner · 13 years ago
  38. 9587286 Issue #3080: Import builtins using Unicode strings by Victor Stinner · 13 years ago
  39. 53dc735 Issue #3080: Add PyImport_ImportFrozenModuleObject() by Victor Stinner · 13 years ago
  40. 9464d61 Issue #3080: PyImport_Cleanup() uses Unicode by Victor Stinner · 13 years ago
  41. 942003c import.c: replace tab by spaces by Victor Stinner · 13 years ago
  42. 27ee089 Issue #3080: Add PyImport_AddModuleObject() and PyImport_ExecCodeModuleObject() by Victor Stinner · 13 years ago
  43. 501c09a Issue #3080: Mark _PyImport_FindBuiltin() argument as constant by Victor Stinner · 13 years ago
  44. 9b99b44 Issue #3080: Mark PyWin_FindRegisteredModule() as private by Victor Stinner · 13 years ago
  45. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  46. ebc0052 import: use PyUnicode_FSConverter to support bytes path and PEP 383 by Victor Stinner · 14 years ago
  47. 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
  48. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  49. 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 14 years ago
  50. ed7916d find_module(): use FS encoding to display the missing __init__ warning by Victor Stinner · 14 years ago
  51. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  52. 294a9fc fix refleak by Benjamin Peterson · 14 years ago
  53. 88bd891 Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the by Victor Stinner · 14 years ago
  54. 1a56303 imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module by Victor Stinner · 14 years ago
  55. 3ea23dd imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in by Victor Stinner · 14 years ago
  56. 8dbf629 imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates by Victor Stinner · 14 years ago
  57. 4e31443 Create fileutils.c/.h by Victor Stinner · 14 years ago
  58. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  59. 748cace Remove an unreferenced variable. len is no longer needed. by Brian Curtin · 14 years ago
  60. 255dfdb Issue #9979: Use PyUnicode_AsWideCharString() in import.c by Victor Stinner · 14 years ago
  61. bc2eff3 PyImport_Import was using the old import hack of sticking a dummy value into by Brett Cannon · 14 years ago
  62. cd419ab Fix incorrect comment regarding MAGIC and TAG in import.c by Nick Coghlan · 14 years ago
  63. 6246d6d bump magic number for DELETE_DEREF by Benjamin Peterson · 14 years ago
  64. c793779 Fix Issue #9752: MSVC compiler warning due to undefined function by Daniel Stutzbach · 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. 6b06da5 Remove unused functions _PyImport_FindModule and _PyImport_IsScript by Victor Stinner · 14 years ago
  67. f52b705 Create _Py_fopen() for PyUnicodeObject path by Victor Stinner · 14 years ago
  68. 8a79dcc _Py_stat(): ensure that path ends with a nul character by Victor Stinner · 14 years ago
  69. 4f4402c Issue #9425: Create private _Py_stat() function by Victor Stinner · 14 years ago
  70. 1a4d12d Issue #9425: NullImporter constructor is fully unicode compliant by Victor Stinner · 14 years ago
  71. 44c6c15 Issue #9425: Create load_builtin() subfunction by Victor Stinner · 14 years ago
  72. 556d800 Merged revisions 81380 via svnmerge from by Benjamin Peterson · 14 years ago
  73. 7c9627b Typo repair. by Barry Warsaw · 14 years ago
  74. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  75. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  76. 28a691b PEP 3147 by Barry Warsaw · 14 years ago
  77. fa0aeba Merged revisions 79428 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. 52f6dd7 Merged revisions 78826 via svnmerge from by Victor Stinner · 14 years ago
  80. 24cec9f Merged revisions 78527,78550 via svnmerge from by Gregory P. Smith · 14 years ago
  81. 9a5b25a Strip out trailing whitespace. by Brett Cannon · 14 years ago
  82. 0f6cae0 remove magic number bumping from the 2.x -U option #7459 by Benjamin Peterson · 15 years ago
  83. 0df35a9 Merged revisions 74841 via svnmerge from by Benjamin Peterson · 15 years ago
  84. e223eb8 Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge from by Alexandre Vassalotti · 15 years ago
  85. 9d58e3e Merged revisions 73870,73879,73899-73900,73905-73906 via svnmerge from by Alexandre Vassalotti · 15 years ago
  86. 876b2f2 Merged revisions 72912,72920,72940 via svnmerge from by Benjamin Peterson · 15 years ago
  87. a826f32 Merged revisions 71031 via svnmerge from by Brett Cannon · 15 years ago
  88. 92af5d9 Fix a leaking "pathname" in import.c by Kristján Valur Jónsson · 15 years ago
  89. e1b0445 get_file() no longer leaks a FILE structure. If given a file descriptor, it calls dup() to get a new handle. Then both the FILE object and the fd can be closed. by Kristján Valur Jónsson · 15 years ago
  90. 0ad59d4 Issue #5604: non-ASCII characters in module name passed to by Guido van Rossum · 15 years ago
  91. 8d11013 Implement InspectLoader for FrozenImporter. by Brett Cannon · 15 years ago
  92. 3c2ac44 Fix a typo in a comment. by Brett Cannon · 15 years ago
  93. 4f447fb Issue #5273: Fixed import failure on unicode path. (especially on windows) by Hirokazu Yamamoto · 15 years ago
  94. 9de7ec7 http://bugs.python.org/issue4715 by Jeffrey Yasskin · 15 years ago
  95. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  96. 90eaaf6 Issue #5041: Fixed memory leak. by Hirokazu Yamamoto · 16 years ago
  97. 92cb438 Issue 3677: Release the path string on py3k by Kristján Valur Jónsson · 16 years ago
  98. 21cbf5f Merged revisions 68457 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  99. d35cbf6 Merged revisions 68360-68361 via svnmerge from by Antoine Pitrou · 16 years ago
  100. ffe431d Merged revisions 68203 via svnmerge from by Martin v. Löwis · 16 years ago