summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)Victor Stinner2018-11-221-0/+1
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-4/+4
* bpo-35177: Add dependencies between header files (GH-10361)Victor Stinner2018-11-111-1/+0
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Serhiy Storchaka2018-11-051-1/+1
* bpo-35081: And pycore_lifecycle.h and pycore_pathconfig.h (GH-10273)Victor Stinner2018-11-011-0/+1
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-3/+3
* bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249)Victor Stinner2018-10-311-0/+1
* bpo-33237: Improve AttributeError message for partially initialized module. (...Serhiy Storchaka2018-10-301-21/+9
* bpo-33331: Clean modules in the reversed order in PyImport_Cleanup(). (GH-6565)Serhiy Storchaka2018-10-291-3/+4
* closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)Benjamin Peterson2018-09-121-1/+1
* bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)Victor Stinner2018-08-031-8/+8
* bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608)Victor Stinner2018-08-011-2/+2
* bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607)Victor Stinner2018-08-011-2/+0
* bpo-33443 Fix typo in Python/import.c (GH-6722)ukwksk2018-05-141-5/+5
* bpo-33330: Write exceptions occurred in PyImport_Cleanup() to stderr. (GH-6606)Serhiy Storchaka2018-04-291-16/+20
* bpo-33330: Improve error handling in PyImport_Cleanup(). (GH-6564)Serhiy Storchaka2018-04-251-9/+24
* bpo-32946: Speed up "from ... import ..." from non-packages. (GH-5873)Serhiy Storchaka2018-03-111-4/+15
* rename _imp initialization function to follow conventions (#5432)Benjamin Peterson2018-01-291-2/+1
* fix up signedness in PyImport_ExtendInittab (#4831)Benjamin Peterson2017-12-161-5/+3
* import.c: Fix a GCC warning (#4822)Victor Stinner2017-12-121-1/+1
* fix my byte-swapping implementation (#4772)Benjamin Peterson2017-12-091-10/+10
* closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575)Benjamin Peterson2017-12-091-0/+42
* Fix missing DECREF of mod. (#4749)Neil Schemenauer2017-12-081-0/+1
* bpo-32030: Add _PyImport_Fini2() (#4737)Victor Stinner2017-12-061-11/+41
* bpo-32030: pass interp to _PyImport_Init() (#4736)Victor Stinner2017-12-061-9/+1
* Refactor PyImport_ImportModuleLevelObject(). (#4680)Neil Schemenauer2017-12-031-50/+57
* bpo-32030: Add more options to _PyCoreConfig (#4485)Victor Stinner2017-11-211-4/+3
* bpo-32030: Enhance Py_Main() (#4412)Victor Stinner2017-11-161-25/+6
* bpo-32030: Split Py_Main() into subfunctions (#4399)Victor Stinner2017-11-151-13/+20
* bpo-31415: Improve error handling and caching of the importtime option. (#4138)Serhiy Storchaka2017-11-071-13/+20
* bpo-31415: Support PYTHONPROFILEIMPORTTIME envvar equivalent to -X importtime...Barry Warsaw2017-11-021-4/+11
* bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983)Victor Stinner2017-10-161-6/+6
* bpo-31773: time.perf_counter() uses again double (GH-3964)Victor Stinner2017-10-121-6/+6
* bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936)Victor Stinner2017-10-101-2/+2
* bpo-31415: Add `-X importtime` option (GH-3490)INADA Naoki2017-10-031-0/+42
* bpo-31574: importlib dtrace (#3749)Christian Heimes2017-09-291-0/+10
* bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)Eric Snow2017-09-151-43/+121
* bpo-28411: Isolate PyInterpreterState.modules (#3575)Eric Snow2017-09-141-14/+45
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-141-168/+37
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-081-0/+1
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-14/+0
* bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)Eric Snow2017-09-041-37/+168
* bpo-30876: Relative import from unloaded package now reimports the package (#...Serhiy Storchaka2017-07-121-7/+0
* bpo-30891: Fix importlib _find_and_load() race condition (#2646)Victor Stinner2017-07-101-4/+0
* bpo-30814: Fixed a race condition when import a submodule from a package. (#2...Serhiy Storchaka2017-07-061-16/+1
* bpo-30626: Fix error handling in PyImport_Import(). (#2103)Serhiy Storchaka2017-06-151-2/+6
* Doc nits for bpo-16500 (#1841)Antoine Pitrou2017-05-281-1/+1
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-231-10/+11
* Use Py_RETURN_FALSE/Py_RETURN_TRUE rather than PyBool_FromLong(0)/PyBool_From...Serhiy Storchaka2017-03-081-1/+1
* Removed redundant Argument Clinic directives.Serhiy Storchaka2017-02-041-5/+0