django/tests/utils_tests/test_module
William Schwartz ec6d2531c5 Fixed #32314 -- Fixed detection when started non-django modules with "python -m" in autoreloader.
django.utils.autoreload.get_child_arguments() detected when Python was
started with the `-m` option only for `django` module. This commit
changes the logic to check __spec__, see
https://docs.python.org/3/reference/import.html#main-spec

Now packages can implement their own __main__ with the runserver
command.
2021-01-05 21:03:29 +01:00
..
child_module
__init__.py
__main__.py Fixed #32314 -- Fixed detection when started non-django modules with "python -m" in autoreloader. 2021-01-05 21:03:29 +01:00
another_bad_module.py
another_good_module.py
bad_module.py
good_module.py