COMMITS
/ Python/import.c October 11, 2011
V
Fix typo in import.c
Victor Stinner committed
V
Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE()
Victor Stinner committed
October 10, 2011
M
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis committed
October 9, 2011
M
Add API for static strings, primarily good for identifiers.
Martin v. Löwis committed
October 6, 2011
V
Fix find_module_path(): make the string ready
Victor Stinner committed
October 2, 2011
B
remove unused label
Benjamin Peterson committed
October 1, 2011
M
Issue 13085: Fix some memory leaks. Patch by Stefan Krah.
Martin v. Löwis committed
September 28, 2011
G
Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY").
Georg Brandl committed
M
Implement PEP 393.
Martin v. Löwis committed
September 23, 2011
V
Merge 3.2: Issue #7732: Don't open a directory as a file anymore while
Victor Stinner committed
V
Issue #7732: Don't open a directory as a file anymore while importing a
Victor Stinner committed
September 15, 2011
V
import.c: remove now useless arbitrary limit
Victor Stinner committed
V
Merge 3.2: Fix the import machinery if there is an error on sys.path or sys.meta_path
Victor Stinner committed
V
Fix the import machinery if there is an error on sys.path or sys.meta_path
Victor Stinner committed
September 1, 2011
V
Merge 3.2: Remove unused variable if Python is build without threads
Victor Stinner committed
V
Remove unused variable if Python is build without threads
Victor Stinner committed
June 20, 2011
V
call_find_module() handles dup() failure: raise an OSError exception
Victor Stinner committed
V
find_module_path_list() fails if _Py_fopen() failed and raised an exception
Victor Stinner committed
B
bump magic for super closure change
Benjamin Peterson committed
June 3, 2011
B
some horrible preprocessing tricks to automatically update the tag
Benjamin Peterson committed
May 26, 2011
V
Remove useless assignments
Victor Stinner committed
May 25, 2011
B
make PyImport_ImportModuleLevel's first arg const like similiar functions (closes #12173)
Benjamin Peterson committed
April 20, 2011
V
Close #11619: write_compiled_module() doesn't encode the filename
Victor Stinner committed
April 4, 2011
V
Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error.
Victor Stinner committed
March 23, 2011
B
Make importlib compatible with __import__ by "fixing" code.co_filename
Brett Cannon committed
March 22, 2011
V
Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395
Victor Stinner committed
V
Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the file
Victor Stinner committed
March 20, 2011
V
Issue #3080: imp.load_module() accepts None for the module path
Victor Stinner committed
V
Issue #3080: Fix call to case_ok() in find_init_module()
Victor Stinner committed
V
Issue #3080: Fix case_ok() using case_bytes()
Victor Stinner committed
V
Issue #3080: find_init_module() expects Unicode
Victor Stinner committed
March 14, 2011
V
Issue #3080: Add PyImport_ImportModuleLevelObject() function
Victor Stinner committed
V
Issue #3080: Use repr() to format the module name on error
Victor Stinner committed
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
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