summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Collapse)AuthorAgeFilesLines
...
* | Rewrite make_source_pathname using Unicode API.Martin v. Löwis2011-10-231-38/+41
| |
* | Add ready checks for make_compiled_pathname.Martin v. Löwis2011-10-231-1/+9
| |
* | Reformulate make_compiled_pathname in terms of unicode objects.Martin v. Löwis2011-10-231-116/+61
| |
* | Issue #13146: Writing a pyc file is now atomic under POSIX.Antoine Pitrou2011-10-171-9/+36
| |
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-6/+6
| |
* | Fix typo in import.cVictor Stinner2011-10-111-1/+1
| |
* | Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE()Victor Stinner2011-10-111-3/+8
| |
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-7/+9
| |
* | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-4/+7
| | | | | | | | Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
* | Fix find_module_path(): make the string readyVictor Stinner2011-10-061-0/+3
| |
* | remove unused labelBenjamin Peterson2011-10-021-1/+0
| |
* | Issue 13085: Fix some memory leaks. Patch by Stefan Krah.Martin v. Löwis2011-10-011-11/+19
| |
* | Rename new macros to conform to naming rules (function macros have "Py" ↵Georg Brandl2011-09-281-3/+3
| | | | | | | | prefix, not "PY").
* | Implement PEP 393.Martin v. Löwis2011-09-281-145/+190
| |
* | Merge 3.2: Issue #7732: Don't open a directory as a file anymore whileVictor Stinner2011-09-231-0/+9
|\ \ | |/ | | | | | | importing a module. Ignore the direcotry if its name matchs the module name (e.g. "__init__.py") and raise a ImportError instead.
| * Issue #7732: Don't open a directory as a file anymore while importing aVictor Stinner2011-09-231-1/+8
| | | | | | | | | | module. Ignore the direcotry if its name matchs the module name (e.g. "__init__.py") and raise a ImportError instead.
* | import.c: remove now useless arbitrary limitVictor Stinner2011-09-151-6/+0
| |
* | Merge 3.2: Fix the import machinery if there is an error on sys.path or ↵Victor Stinner2011-09-151-4/+4
|\ \ | |/ | | | | | | | | | | | | sys.meta_path find_module() now raises a RuntimeError, instead of ImportError, on an error on sys.path or sys.meta_path because load_package() and import_submodule() returns None and clear the exception if a ImportError occurred.
| * Fix the import machinery if there is an error on sys.path or sys.meta_pathVictor Stinner2011-09-151-4/+4
| | | | | | | | | | | | find_module() now raises a RuntimeError, instead of ImportError, on an error on sys.path or sys.meta_path because load_package() and import_submodule() returns None and clear the exception if a ImportError occurred.
* | Merge 3.2: Remove unused variable if Python is build without threadsVictor Stinner2011-09-011-0/+2
|\ \ | |/
| * Remove unused variable if Python is build without threadsVictor Stinner2011-09-011-0/+2
| |
* | call_find_module() handles dup() failure: raise an OSError exceptionVictor Stinner2011-06-201-0/+4
| |
* | find_module_path_list() fails if _Py_fopen() failed and raised an exceptionVictor Stinner2011-06-201-0/+4
| | | | | | | | (UnicodeEncodeError).
* | bump magic for super closure changeBenjamin Peterson2011-06-201-1/+2
| |
* | some horrible preprocessing tricks to automatically update the tagBenjamin Peterson2011-06-031-2/+10
| |
* | Remove useless assignmentsVictor Stinner2011-05-261-4/+0
| | | | | | | | Warnings found by the the Clang Static Analyzer.
* | make PyImport_ImportModuleLevel's first arg const like similiar functions ↵Benjamin Peterson2011-05-251-1/+1
| | | | | | | | (closes #12173)
* | Close #11619: write_compiled_module() doesn't encode the filenameVictor Stinner2011-04-201-2/+24
| | | | | | | | | | Reimplement open_exclusive() using _wopen() to avoid encoding the filename to the filesystem encoding: use the Unicode version of the Windows API.
* | Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error.Victor Stinner2011-04-041-5/+5
| |
* | Make importlib compatible with __import__ by "fixing" code.co_filenameBrett Cannon2011-03-231-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | paths. __import__ does a little trick when importing from bytecode by back-patching the co_filename paths to point to the file location where the code object was loaded from, *not* where the code object was originally created. This allows co_filename to point to a valid path. Problem is that co_filename is immutable from Python, so a private function -- imp._fix_co_filename() -- had to be introduced in order to get things working properly. Originally the plan was to add a file argument to marshal.loads(), but that failed as the algorithm used by __import__ is not fully recursive as one might expect, so to be fully backwards-compatible the code used by __import__ needed to be exposed. This closes issue #6811 by taking a different approach than outlined in the issue.
* | Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395Victor Stinner2011-03-221-1/+4
| |
* | Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the fileVictor Stinner2011-03-221-1/+1
| | | | | | | | cannot be found.
* | Issue #3080: imp.load_module() accepts None for the module pathVictor Stinner2011-03-201-8/+13
| | | | | | | | imp.find_module() returns None as module path for builtin and frozen builtins.
* | Issue #3080: Fix call to case_ok() in find_init_module()Victor Stinner2011-03-201-4/+4
| |
* | Issue #3080: Fix case_ok() using case_bytes()Victor Stinner2011-03-201-2/+2
| | | | | | | | Invert name and namelen arguments.
* | Issue #3080: Add PyImport_ImportModuleLevelObject() functionVictor Stinner2011-03-141-10/+22
| | | | | | | | Use it for the builtin __import__ function.
* | Issue #3080: Use repr() to format the module name on errorVictor Stinner2011-03-141-7/+7
| |
* | Fix imp.cache_from_source() if the directory name contains a dotVictor Stinner2011-03-141-2/+2
| | | | | | | | | | If the directory name contains a dot but not the filename, don't strip at the dot.
* | Issue #3080: imp.new_module() uses UnicodeVictor Stinner2011-03-141-3/+3
| |
* | Issue #3080: find_module() returns the path as UnicodeVictor Stinner2011-03-141-97/+74
| |
* | Issue #3080: case_ok() expects Unicode stringsVictor Stinner2011-03-141-49/+132
| |
* | Issue #3080: find_init_module() expects UnicodeVictor Stinner2011-03-201-43/+45
| |
* | Issue #3080: Refactor find_module_path(), use return instead of breakVictor Stinner2011-03-141-40/+37
| | | | | | | | Prepare also the API change of case_ok()
* | Issue #3080: find_module() sets an empty path for builtin and frozen modulesVictor Stinner2011-03-141-6/+2
| |
* | Issue #3080: Rename some path variables to path_listVictor Stinner2011-03-141-20/+20
| |
* | Issue #3080: find_module() expects module fullname and subname as UnicodeVictor Stinner2011-03-141-86/+84
| | | | | | | | And PyImport_ReloadModule() uses Unicode for the module name.
* | Issue #3080: Drop OS/2 support for the import machineryVictor Stinner2011-03-141-52/+0
| | | | | | | | Sorry Andrew I MacIntyre!
* | Issue #3080: Reindent and simplify import_submodule()Victor Stinner2011-03-141-42/+39
| |
* | Issue #3080: Use %R to format module name in error messagesVictor Stinner2011-03-141-2/+2
| | | | | | | | %R format instead of %U
* | Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import"Victor Stinner2011-03-151-159/+222
| | | | | | | | | | | | | | | | | | | | | | | | | | Use Unicode for module name and paths in the following functions: * PyImport_ImportModuleLevel() * add_submodule() * ensure_from_list() * get_parent() * import_module_level() * import_submodule() * load_next() * mark_miss()