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
*
Fix compilation on Windows
Nick Coghlan
2012-10-20
1
-1/+1
*
Issue #6074: Forward port Windows read-only source file fix from 2.7
Nick Coghlan
2012-10-19
1
-0/+6
*
Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...
Antoine Pitrou
2012-08-15
1
-2/+11
*
Issue #14761: Fix potential leak on an error case in the import machinery.
Antoine Pitrou
2012-05-09
1
-1/+2
*
Fixes Issue #14331: Use significantly less stack space when importing modules by
Gregory P. Smith
2012-03-18
1
-39/+127
*
Issue #14084: Fix a file descriptor leak when importing a module with a bad e...
Antoine Pitrou
2012-02-22
1
-1/+3
*
In find_module(), do not silence fileno() and dup() errors.
Antoine Pitrou
2012-02-22
1
-0/+2
*
Port import fixes from 2.7.
Antoine Pitrou
2012-01-25
1
-10/+10
*
Issue #11235: Fix OverflowError when trying to import a source file whose mod...
Antoine Pitrou
2012-01-24
1
-7/+4
*
Fix the builtin module initialization code to store the init function for fut...
Antoine Pitrou
2012-01-18
1
-0/+4
*
Add signatures to the docstring of functions added to imp by PEP 3147
Éric Araujo
2011-11-03
1
-2/+4
*
Issue #10363: Deallocate global locks in Py_Finalize().
Antoine Pitrou
2011-10-30
1
-10/+15
*
Issue #7732: Don't open a directory as a file anymore while importing a
Victor Stinner
2011-09-23
1
-1/+8
*
Fix the import machinery if there is an error on sys.path or sys.meta_path
Victor Stinner
2011-09-15
1
-4/+4
*
Remove unused variable if Python is build without threads
Victor Stinner
2011-09-01
1
-0/+2
*
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-1/+1
*
import: use PyUnicode_FSConverter to support bytes path and PEP 383
Victor Stinner
2010-12-03
1
-28/+30
*
Issue #9573: os.fork now works when triggered as a side effect of import (the...
Nick Coghlan
2010-12-02
1
-2/+11
*
Remove redundant includes of headers that are already included by Python.h.
Georg Brandl
2010-11-30
1
-4/+0
*
Issue #10359: Remove ";" after function definition, invalid in ISO C
Victor Stinner
2010-11-09
1
-1/+1
*
find_module(): use FS encoding to display the missing __init__ warning
Victor Stinner
2010-10-17
1
-7/+9
*
_PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding
Victor Stinner
2010-10-17
1
-10/+34
*
fix refleak
Benjamin Peterson
2010-10-16
1
-4/+6
*
Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the
Victor Stinner
2010-10-15
1
-1/+1
*
imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module
Victor Stinner
2010-10-15
1
-7/+7
*
imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in
Victor Stinner
2010-10-15
1
-5/+8
*
imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates
Victor Stinner
2010-10-15
1
-6/+6
*
Create fileutils.c/.h
Victor Stinner
2010-10-07
1
-65/+0
*
PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*
Victor Stinner
2010-10-07
1
-3/+3
*
Remove an unreferenced variable. len is no longer needed.
Brian Curtin
2010-09-29
1
-1/+0
*
Issue #9979: Use PyUnicode_AsWideCharString() in import.c
Victor Stinner
2010-09-29
1
-18/+16
*
PyImport_Import was using the old import hack of sticking a dummy value into
Brett Cannon
2010-09-19
1
-3/+13
*
Fix incorrect comment regarding MAGIC and TAG in import.c
Nick Coghlan
2010-09-11
1
-2/+5
*
bump magic number for DELETE_DEREF
Benjamin Peterson
2010-09-10
1
-1/+2
*
Fix Issue #9752: MSVC compiler warning due to undefined function
Daniel Stutzbach
2010-09-09
1
-4/+7
*
Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced
Antoine Pitrou
2010-09-04
1
-1/+3
*
Remove unused functions _PyImport_FindModule and _PyImport_IsScript
Victor Stinner
2010-08-17
1
-16/+0
*
Create _Py_fopen() for PyUnicodeObject path
Victor Stinner
2010-08-14
1
-0/+33
*
_Py_stat(): ensure that path ends with a nul character
Victor Stinner
2010-08-14
1
-2/+3
*
Issue #9425: Create private _Py_stat() function
Victor Stinner
2010-08-14
1
-0/+33
*
Issue #9425: NullImporter constructor is fully unicode compliant
Victor Stinner
2010-08-13
1
-38/+52
*
Issue #9425: Create load_builtin() subfunction
Victor Stinner
2010-08-09
1
-30/+40
*
Merged revisions 81380 via svnmerge from
Benjamin Peterson
2010-06-27
1
-1/+2
*
Typo repair.
Barry Warsaw
2010-06-17
1
-4/+4
*
Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode
Victor Stinner
2010-05-15
1
-10/+2
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-2740/+2740
*
PEP 3147
Barry Warsaw
2010-04-17
1
-28/+363
*
Merged revisions 79428 via svnmerge from
Benjamin Peterson
2010-03-25
1
-2/+2
*
Issue #6697: use %U format instead of _PyUnicode_AsString(), because
Victor Stinner
2010-03-12
1
-2/+2
*
Merged revisions 78826 via svnmerge from
Victor Stinner
2010-03-12
1
-2/+0
[next]