COMMITS
/ Python/import.c March 14, 2011
V
Fix imp.cache_from_source() if the directory name contains a dot
Victor Stinner committed
V
Issue #3080: imp.new_module() uses Unicode
Victor Stinner committed
V
Issue #3080: find_module() returns the path as Unicode
Victor Stinner committed
V
Issue #3080: case_ok() expects Unicode strings
Victor Stinner committed
V
Issue #3080: Refactor find_module_path(), use return instead of break
Victor Stinner committed
V
Issue #3080: find_module() sets an empty path for builtin and frozen modules
Victor Stinner committed
V
Issue #3080: Rename some path variables to path_list
Victor Stinner committed
V
Issue #3080: find_module() expects module fullname and subname as Unicode
Victor Stinner committed
V
Issue #3080: Drop OS/2 support for the import machinery
Victor Stinner committed
V
Issue #3080: Reindent and simplify import_submodule()
Victor Stinner committed
V
Issue #3080: Use %R to format module name in error messages
Victor Stinner committed
V
Issue #3080: PyImport_ImportModuleNoBlock() uses Unicode
Victor Stinner committed
V
Issue #3080: load_module() expects name and path as Unicode
Victor Stinner committed
V
Issue #3080: get_sourcefile(), make_source_pathname(), load_package()
Victor Stinner committed
V
Issue #3080: _PyImport_LoadDynamicModule() uses Unicode for name and path
Victor Stinner committed
March 20, 2011
V
Issue #3080: find_init_module() expects Unicode
Victor Stinner committed
V
Issue #3080: Create find_module_path_list() subfunction
Victor Stinner committed
V
Issue #3080: Add PyImport_ImportFrozenModuleObject()
Victor Stinner committed
March 15, 2011
V
Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import"
Victor Stinner committed
March 19, 2011
V
Issue #3080: Use Unicode to import source and compiled modules
Victor Stinner committed
March 12, 2011
V
Issue #3080: Create find_module_path() subfunction
Victor Stinner committed
V
Issue #3080: Remove useless name buffer from find_module()
Victor Stinner committed
V
Issue #3080: find_module() initialize buf and *p_fp
Victor Stinner committed
March 8, 2011
V
Issue #3080: _PyWin_FindRegisteredModule() returns the path as Unicode
Victor Stinner committed
March 7, 2011
V
Issue #3080: Use PyUnicode_InternFromString() for builtins
Victor Stinner committed
V
Issue #3080: Import builtins using Unicode strings
Victor Stinner committed
V
Issue #3080: PyImport_Cleanup() uses Unicode
Victor Stinner committed
V
import.c: replace tab by spaces
Victor Stinner committed
March 4, 2011
V
Issue #3080: Add PyImport_AddModuleObject() and PyImport_ExecCodeModuleObject()
Victor Stinner committed
February 23, 2011
V
Issue #3080: Mark _PyImport_FindBuiltin() argument as constant
Victor Stinner committed
February 22, 2011
V
Issue #3080: Mark PyWin_FindRegisteredModule() as private
Victor Stinner committed
December 3, 2010
M
Merge branches/pep-0384.
Martin v. Löwis committed
V
import: use PyUnicode_FSConverter to support bytes path and PEP 383
Victor Stinner committed
December 2, 2010
November 30, 2010
G
Remove redundant includes of headers that are already included by Python.h.
Georg Brandl committed
November 9, 2010
V
Issue #10359: Remove ";" after function definition, invalid in ISO C
Victor Stinner committed
October 17, 2010
V
find_module(): use FS encoding to display the missing __init__ warning
Victor Stinner committed
V
_PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding
Victor Stinner committed
October 16, 2010
B
fix refleak
Benjamin Peterson committed
October 15, 2010
V
Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the
Victor Stinner committed
V
imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module
Victor Stinner committed
V
imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in
Victor Stinner committed
V
imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates
Victor Stinner committed
October 7, 2010
V
Create fileutils.c/.h
Victor Stinner committed
V
PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*
Victor Stinner committed
September 29, 2010
B
Remove an unreferenced variable. len is no longer needed.
Brian Curtin committed
V
Issue #9979: Use PyUnicode_AsWideCharString() in import.c
Victor Stinner committed
September 19, 2010
B
PyImport_Import was using the old import hack of sticking a dummy value into
Brett Cannon committed
September 11, 2010
N
Fix incorrect comment regarding MAGIC and TAG in import.c
Nick Coghlan committed
September 10, 2010
B
bump magic number for DELETE_DEREF
Benjamin Peterson committed