COMMITS
/ Python/import.c December 18, 2011
V
import.c now catchs _Py_stat() exceptions
Victor Stinner committed
December 7, 2011
C
Followup to a541bda2f5e2: Add a short comment.
Charles-François Natali committed
C
Issue #11051: Reduce the number of syscalls per import.
Charles-François Natali committed
November 25, 2011
A
PEP 3155 / issue #13448: Qualified name for classes and functions.
Antoine Pitrou committed
November 16, 2011
V
Catch PyUnicode_AS_UNICODE() errors
Victor Stinner committed
November 15, 2011
A
Use PyUnicode_FromFormat() to create the temporary file name.
Antoine Pitrou committed
A
Fix regression under Windows following b75b41237380 (from issue #13392)
Antoine Pitrou committed
A
Issue #13392: Writing a pyc file should now be atomic under Windows as well.
Antoine Pitrou committed
November 10, 2011
C
Issue #13303: Fix bytecode file default permission.
Charles-François Natali committed
November 3, 2011
É
Merge follow-up for #11254 and other changes from 3.2
Éric Araujo committed
É
Add signatures to the docstring of functions added to imp by PEP 3147
Éric Araujo committed
October 30, 2011
A
Issue #10363: Deallocate global locks in Py_Finalize().
Antoine Pitrou committed
M
Port import_module_level to Unicode API.
Martin v. Löwis committed
A
Issue #10363: Deallocate global locks in Py_Finalize().
Antoine Pitrou committed
M
Port PyImport_ReloadModule to Unicode API.
Martin v. Löwis committed
October 31, 2011
C
Issue #13303: Fix a race condition in the bytecode file creation.
Charles-François Natali committed
October 24, 2011
A
Fix test_imp failure under Windows
Antoine Pitrou committed
October 23, 2011
M
Rewrite find_module_path using unicode API.
Martin v. Löwis committed
M
Fix off-by-one error.
Martin v. Löwis committed
M
Drop unused macros. Use CACHEDIR consistently.
Martin v. Löwis committed
M
Rewrite make_source_pathname using Unicode API.
Martin v. Löwis committed
M
Add ready checks for make_compiled_pathname.
Martin v. Löwis committed
M
Reformulate make_compiled_pathname in terms of unicode objects.
Martin v. Löwis committed
October 17, 2011
A
Issue #13146: Writing a pyc file is now atomic under POSIX.
Antoine Pitrou committed
October 14, 2011
M
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis committed
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