index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
utils
/
module_loading.py
Age
Commit message (
Expand
)
Author
2015-06-18
Removed support for Python 3.3.
Tim Graham
2015-06-06
Fixed ImportError message in utils.module_loading.import_string()
Tomasz Kontusz
2015-02-23
Prevented makemigrations from writing in sys.path[0].
Aymeric Augustin
2015-02-09
Removed some obsolete absolute_imports.
Tim Graham
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2015-01-18
Removed utils.module_loading.import_by_path() per deprecation timeline; refs ...
Tim Graham
2014-10-31
Fixed #23670 -- Prevented partial import state during module autodiscovery
Markus Holtermann
2014-06-07
Simplified module_has_submodule on Python >= 3.3.
Aymeric Augustin
2014-03-08
Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warnings
Claude Paroz
2014-02-08
Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...
Berker Peksag
2014-01-12
Used a regular lock for app registry population.
Aymeric Augustin
2013-12-26
Made the AppConfig API marginally more consistent.
Aymeric Augustin
2013-12-24
Renamed AppCache to Apps.
Aymeric Augustin
2013-12-22
Moved apps back in the toplevel django namespace.
Aymeric Augustin
2013-12-22
Stopped iterating on INSTALLED_APPS.
Aymeric Augustin
2013-12-22
Added a context manager to hold the import lock.
Aymeric Augustin
2013-09-13
Fixed #21060 -- Refactored admin's autodiscover method to make it reusable.
Juan Catalano
2013-08-19
Avoid importing the deprecated `django.utils.importlib` package.
Simon Charette
2013-07-29
Deprecated django.utils.importlib
Claude Paroz
2013-03-31
Fixed #20167 -- Preserve the traceback of `ImportError`s in `import_by_path`.
Joe Friedl
2013-02-04
Fixed #17061 -- Factored out importing object from a dotted path
Claude Paroz
2011-08-28
Fixed #15525 -- Custom template tags loading breaks whenever templatetags is ...
Chris Beaven
2011-07-10
Properly implement PEP 302 in the module_loading module. For unknown reasons...
Alex Gaynor
2011-04-22
Fixed #15662 -- Made sure the module_has_submodule utility function follow co...
Jannis Leidel
2011-01-30
Fixed #14698 -- Ensure that module_has_sumodule doesn't mistake a cache miss ...
Russell Keith-Magee
2010-05-04
Fixed #13464 -- Reworked module_has_submodule to break the requirement for lo...
Russell Keith-Magee
2010-04-25
Fixed #13404 -- Reworked module_has_submodule() to allow it to work under App...
Russell Keith-Magee
2010-04-15
Fixed #13348: Restored ability to load models from apps in eggs. Thanks Ramir...
Karen Tracey