COMMITS
/ Python/import.c 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
September 9, 2010
D
Fix Issue #9752: MSVC compiler warning due to undefined function
Daniel Stutzbach committed
September 4, 2010
A
Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced
Antoine Pitrou committed
August 17, 2010
V
Remove unused functions _PyImport_FindModule and _PyImport_IsScript
Victor Stinner committed
August 14, 2010
V
Create _Py_fopen() for PyUnicodeObject path
Victor Stinner committed
V
_Py_stat(): ensure that path ends with a nul character
Victor Stinner committed
V
Issue #9425: Create private _Py_stat() function
Victor Stinner committed
August 13, 2010
V
Issue #9425: NullImporter constructor is fully unicode compliant
Victor Stinner committed
August 9, 2010
V
Issue #9425: Create load_builtin() subfunction
Victor Stinner committed
June 27, 2010
B
Merged revisions 81380 via svnmerge from
Benjamin Peterson committed
June 17, 2010
B
Typo repair.
Barry Warsaw committed
May 15, 2010
V
Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode
Victor Stinner committed
May 9, 2010
A
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou committed
March 25, 2010
B
Merged revisions 79428 via svnmerge from
Benjamin Peterson committed
March 12, 2010
V
Issue #6697: use %U format instead of _PyUnicode_AsString(), because
Victor Stinner committed
V
Merged revisions 78826 via svnmerge from
Victor Stinner committed
March 1, 2010
G
Merged revisions 78527,78550 via svnmerge from
Gregory P. Smith committed
B
Strip out trailing whitespace.
Brett Cannon committed
December 10, 2009
B
remove magic number bumping from the 2.x -U option #7459
Benjamin Peterson committed
October 4, 2009
B
Merged revisions 74841 via svnmerge from
Benjamin Peterson committed
July 29, 2009
A
Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge from
Alexandre Vassalotti committed
July 17, 2009
A
Merged revisions 73870,73879,73899-73900,73905-73906 via svnmerge from
Alexandre Vassalotti committed
June 28, 2009
B
Merged revisions 72912,72920,72940 via svnmerge from
Benjamin Peterson committed
April 2, 2009
B
Merged revisions 71031 via svnmerge from
Brett Cannon committed
March 31, 2009
K
Fix a leaking "pathname" in import.c
Kristján Valur Jónsson committed
March 30, 2009
G
Issue #5604: non-ASCII characters in module name passed to
Guido van Rossum committed
March 15, 2009
B
Implement InspectLoader for FrozenImporter.
Brett Cannon committed
March 8, 2009
B
Fix a typo in a comment.
Brett Cannon committed
March 4, 2009
H
Issue #5273: Fixed import failure on unicode path. (especially on windows)
Hirokazu Yamamoto committed
February 25, 2009
J
http://bugs.python.org/issue4715
Jeffrey Yasskin committed