summaryrefslogtreecommitdiff
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #14761: Fix potential leak on an error case in the import machinery.Antoine Pitrou2012-05-091-1/+2
* Fixes Issue #14331: Use significantly less stack space when importing modules byGregory P. Smith2012-03-181-39/+127
* Issue #14084: Fix a file descriptor leak when importing a module with a bad e...Antoine Pitrou2012-02-221-1/+3
* In find_module(), do not silence fileno() and dup() errors.Antoine Pitrou2012-02-221-0/+2
* Port import fixes from 2.7.Antoine Pitrou2012-01-251-10/+10
* Issue #11235: Fix OverflowError when trying to import a source file whose mod...Antoine Pitrou2012-01-241-7/+4
* Fix the builtin module initialization code to store the init function for fut...Antoine Pitrou2012-01-181-0/+4
* Add signatures to the docstring of functions added to imp by PEP 3147Éric Araujo2011-11-031-2/+4
* Issue #10363: Deallocate global locks in Py_Finalize().Antoine Pitrou2011-10-301-10/+15
* Issue #7732: Don't open a directory as a file anymore while importing aVictor Stinner2011-09-231-1/+8
* Fix the import machinery if there is an error on sys.path or sys.meta_pathVictor Stinner2011-09-151-4/+4
* Remove unused variable if Python is build without threadsVictor Stinner2011-09-021-0/+2
* 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