index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
import.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE()
Victor Stinner
2011-10-11
1
-3/+8
*
|
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis
2011-10-10
1
-7/+9
*
|
Add API for static strings, primarily good for identifiers.
Martin v. Löwis
2011-10-09
1
-4/+7
*
|
Fix find_module_path(): make the string ready
Victor Stinner
2011-10-06
1
-0/+3
*
|
remove unused label
Benjamin Peterson
2011-10-02
1
-1/+0
*
|
Issue 13085: Fix some memory leaks. Patch by Stefan Krah.
Martin v. Löwis
2011-10-01
1
-11/+19
*
|
Rename new macros to conform to naming rules (function macros have "Py" prefi...
Georg Brandl
2011-09-28
1
-3/+3
*
|
Implement PEP 393.
Martin v. Löwis
2011-09-28
1
-145/+190
*
|
Merge 3.2: Issue #7732: Don't open a directory as a file anymore while
Victor Stinner
2011-09-23
1
-0/+9
|
\
\
|
|
/
|
*
Issue #7732: Don't open a directory as a file anymore while importing a
Victor Stinner
2011-09-23
1
-1/+8
*
|
import.c: remove now useless arbitrary limit
Victor Stinner
2011-09-15
1
-6/+0
*
|
Merge 3.2: Fix the import machinery if there is an error on sys.path or sys.m...
Victor Stinner
2011-09-15
1
-4/+4
|
\
\
|
|
/
|
*
Fix the import machinery if there is an error on sys.path or sys.meta_path
Victor Stinner
2011-09-15
1
-4/+4
*
|
Merge 3.2: Remove unused variable if Python is build without threads
Victor Stinner
2011-09-01
1
-0/+2
|
\
\
|
|
/
|
*
Remove unused variable if Python is build without threads
Victor Stinner
2011-09-01
1
-0/+2
*
|
call_find_module() handles dup() failure: raise an OSError exception
Victor Stinner
2011-06-20
1
-0/+4
*
|
find_module_path_list() fails if _Py_fopen() failed and raised an exception
Victor Stinner
2011-06-20
1
-0/+4
*
|
bump magic for super closure change
Benjamin Peterson
2011-06-20
1
-1/+2
*
|
some horrible preprocessing tricks to automatically update the tag
Benjamin Peterson
2011-06-03
1
-2/+10
*
|
Remove useless assignments
Victor Stinner
2011-05-26
1
-4/+0
*
|
make PyImport_ImportModuleLevel's first arg const like similiar functions (cl...
Benjamin Peterson
2011-05-25
1
-1/+1
*
|
Close #11619: write_compiled_module() doesn't encode the filename
Victor Stinner
2011-04-20
1
-2/+24
*
|
Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error.
Victor Stinner
2011-04-04
1
-5/+5
*
|
Make importlib compatible with __import__ by "fixing" code.co_filename
Brett Cannon
2011-03-23
1
-0/+27
*
|
Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395
Victor Stinner
2011-03-22
1
-1/+4
*
|
Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the file
Victor Stinner
2011-03-22
1
-1/+1
*
|
Issue #3080: imp.load_module() accepts None for the module path
Victor Stinner
2011-03-20
1
-8/+13
*
|
Issue #3080: Fix call to case_ok() in find_init_module()
Victor Stinner
2011-03-20
1
-4/+4
*
|
Issue #3080: Fix case_ok() using case_bytes()
Victor Stinner
2011-03-20
1
-2/+2
*
|
Issue #3080: Add PyImport_ImportModuleLevelObject() function
Victor Stinner
2011-03-14
1
-10/+22
*
|
Issue #3080: Use repr() to format the module name on error
Victor Stinner
2011-03-14
1
-7/+7
*
|
Fix imp.cache_from_source() if the directory name contains a dot
Victor Stinner
2011-03-14
1
-2/+2
*
|
Issue #3080: imp.new_module() uses Unicode
Victor Stinner
2011-03-14
1
-3/+3
*
|
Issue #3080: find_module() returns the path as Unicode
Victor Stinner
2011-03-14
1
-97/+74
*
|
Issue #3080: case_ok() expects Unicode strings
Victor Stinner
2011-03-14
1
-49/+132
*
|
Issue #3080: find_init_module() expects Unicode
Victor Stinner
2011-03-20
1
-43/+45
*
|
Issue #3080: Refactor find_module_path(), use return instead of break
Victor Stinner
2011-03-14
1
-40/+37
*
|
Issue #3080: find_module() sets an empty path for builtin and frozen modules
Victor Stinner
2011-03-14
1
-6/+2
*
|
Issue #3080: Rename some path variables to path_list
Victor Stinner
2011-03-14
1
-20/+20
*
|
Issue #3080: find_module() expects module fullname and subname as Unicode
Victor Stinner
2011-03-14
1
-86/+84
*
|
Issue #3080: Drop OS/2 support for the import machinery
Victor Stinner
2011-03-14
1
-52/+0
*
|
Issue #3080: Reindent and simplify import_submodule()
Victor Stinner
2011-03-14
1
-42/+39
*
|
Issue #3080: Use %R to format module name in error messages
Victor Stinner
2011-03-14
1
-2/+2
*
|
Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import"
Victor Stinner
2011-03-15
1
-159/+222
*
|
Issue #3080: PyImport_ImportModuleNoBlock() uses Unicode
Victor Stinner
2011-03-14
1
-11/+14
*
|
Issue #3080: load_module() expects name and path as Unicode
Victor Stinner
2011-03-14
1
-81/+55
*
|
Issue #3080: Use Unicode to import source and compiled modules
Victor Stinner
2011-03-19
1
-151/+201
*
|
Issue #3080: get_sourcefile(), make_source_pathname(), load_package()
Victor Stinner
2011-03-14
1
-88/+131
*
|
Issue #3080: Create find_module_path() subfunction
Victor Stinner
2011-03-12
1
-89/+139
*
|
Issue #3080: Create find_module_path_list() subfunction
Victor Stinner
2011-03-20
1
-146/+164
[prev]
[next]