This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
django
Watch
1
Star
0
Fork
0
You've already forked django
mirror of
https://github.com/django/django.git
synced
2025-01-16 05:12:23 +00:00
Code
Issues
32
Releases
Wiki
Activity
django
/
tests
/
utils_tests
/
test_module
/
another_good_module.py
8 lines
102 B
Python
Raw
Normal View
History
Unescape
Escape
Fixed #23670 -- Prevented partial import state during module autodiscovery Thanks kostko for the report.
2014-10-31 10:22:15 +01:00
from
.
import
site
Sorted imports with isort; refs #23860.
2015-01-28 07:35:27 -05:00
Fixed #21060 -- Refactored admin's autodiscover method to make it reusable. We want to be able to use it for instance for discovering `tasks.py` modules inside the INSTALLED_APPS. This commit therefore moves the logic to `autodiscover_modules` method in django.utils.module_loading.
2013-09-06 20:23:25 -03:00
content
=
'
Another Good Module
'
Fixed #23670 -- Prevented partial import state during module autodiscovery Thanks kostko for the report.
2014-10-31 10:22:15 +01:00
site
.
_registry
.
update
(
{
'
lorem
'
:
'
ipsum
'
,
}
)
Reference in New Issue
Copy Permalink