summaryrefslogtreecommitdiff
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+1
* import: use PyUnicode_FSConverter to support bytes path and PEP 383Victor Stinner2010-12-031-28/+30
* Issue #9573: os.fork now works when triggered as a side effect of import (the...Nick Coghlan2010-12-021-2/+11
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-4/+0
* Issue #10359: Remove ";" after function definition, invalid in ISO CVictor Stinner2010-11-091-1/+1
* find_module(): use FS encoding to display the missing __init__ warningVictor Stinner2010-10-171-7/+9
* _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encodingVictor Stinner2010-10-171-10/+34
* fix refleakBenjamin Peterson2010-10-161-4/+6
* Fix imp_cache_from_source(): Decode make_compiled_pathname() result from theVictor Stinner2010-10-151-1/+1
* imp_load_module() uses PyUnicode_FSConverter() to support surrogates in moduleVictor Stinner2010-10-151-7/+7
* imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates inVictor Stinner2010-10-151-5/+8
* imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogatesVictor Stinner2010-10-151-6/+6
* Create fileutils.c/.hVictor Stinner2010-10-071-65/+0
* PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-3/+3
* Remove an unreferenced variable. len is no longer needed.Brian Curtin2010-09-291-1/+0
* Issue #9979: Use PyUnicode_AsWideCharString() in import.cVictor Stinner2010-09-291-18/+16
* PyImport_Import was using the old import hack of sticking a dummy value intoBrett Cannon2010-09-191-3/+13
* Fix incorrect comment regarding MAGIC and TAG in import.cNick Coghlan2010-09-111-2/+5
* bump magic number for DELETE_DEREFBenjamin Peterson2010-09-101-1/+2
* Fix Issue #9752: MSVC compiler warning due to undefined functionDaniel Stutzbach2010-09-091-4/+7
* Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replacedAntoine Pitrou2010-09-041-1/+3
* Remove unused functions _PyImport_FindModule and _PyImport_IsScriptVictor Stinner2010-08-171-16/+0
* Create _Py_fopen() for PyUnicodeObject pathVictor Stinner2010-08-141-0/+33
* _Py_stat(): ensure that path ends with a nul characterVictor Stinner2010-08-141-2/+3
* Issue #9425: Create private _Py_stat() functionVictor Stinner2010-08-141-0/+33
* Issue #9425: NullImporter constructor is fully unicode compliantVictor Stinner2010-08-131-38/+52
* Issue #9425: Create load_builtin() subfunctionVictor Stinner2010-08-091-30/+40
* Merged revisions 81380 via svnmerge fromBenjamin Peterson2010-06-271-1/+2
* Typo repair.Barry Warsaw2010-06-171-4/+4
* Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a UnicodeVictor Stinner2010-05-151-10/+2
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-2740/+2740
* PEP 3147Barry Warsaw2010-04-171-28/+363
* Merged revisions 79428 via svnmerge fromBenjamin Peterson2010-03-251-2/+2
* Issue #6697: use %U format instead of _PyUnicode_AsString(), becauseVictor Stinner2010-03-121-2/+2
* Merged revisions 78826 via svnmerge fromVictor Stinner2010-03-121-2/+0
* Merged revisions 78527,78550 via svnmerge fromGregory P. Smith2010-03-011-4/+8
* Strip out trailing whitespace.Brett Cannon2010-03-011-19/+19
* remove magic number bumping from the 2.x -U option #7459Benjamin Peterson2009-12-101-19/+11
* Merged revisions 74841 via svnmerge fromBenjamin Peterson2009-10-041-19/+12
* Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge fromAlexandre Vassalotti2009-07-291-7/+7
* Merged revisions 73870,73879,73899-73900,73905-73906 via svnmerge fromAlexandre Vassalotti2009-07-171-1/+5
* Merged revisions 72912,72920,72940 via svnmerge fromBenjamin Peterson2009-06-281-1/+2
* Merged revisions 71031 via svnmerge fromBrett Cannon2009-04-021-2/+2
* Fix a leaking "pathname" in import.cKristján Valur Jónsson2009-03-311-0/+1
* get_file() no longer leaks a FILE structure. If given a file descriptor, it ...Kristján Valur Jónsson2009-03-311-9/+19
* Issue #5604: non-ASCII characters in module name passed toGuido van Rossum2009-03-301-16/+41
* Implement InspectLoader for FrozenImporter.Brett Cannon2009-03-151-0/+33
* Fix a typo in a comment.Brett Cannon2009-03-081-1/+1
* Issue #5273: Fixed import failure on unicode path. (especially on windows)Hirokazu Yamamoto2009-03-041-4/+6
* http://bugs.python.org/issue4715Jeffrey Yasskin2009-02-251-1/+3