Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/apps/config.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25246 -- Guarded against duplicate paths in ↵Caio Ariede2015-09-021-0/+4
| | | | AppConfig.
* Removed support for Python 3.3.Tim Graham2015-06-181-1/+1
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+2
|
* Removed an obsolete comment in django/apps/config.pyTim Graham2015-01-181-3/+0
|
* Fixed #22920 -- Avoid masking some exceptions.Aymeric Augustin2014-09-081-7/+12
| | | | | If loading an application trigger an ImportError, the details of that error were lost in some cases. Thanks Ben Davis for the report.
* Checked more precisely whether the app registry is ready.Aymeric Augustin2014-07-121-4/+11
| | | | | Accounted for the three stages of population: app configs, models, ready() methods of app configs.
* Fixed two typos.Rodolfo Carvalho2014-02-151-1/+1
|
* Fixed #21874 -- Require Django applications to have a ↵Carl Meyer2014-01-271-16/+27
| | | | | | | | | | | | | | | | filesystem path. Wherever possible this filesystem path is derived automatically from the app module's ``__path__`` and ``__file__`` attributes (this avoids any backwards-compatibility problems). AppConfig allows specifying an app's filesystem location explicitly, which overrides all autodetection based on ``__path__`` and ``__file__``. This permits Django to support any type of module as an app (namespace packages, fake modules, modules loaded by other hypothetical non-filesystem module loaders), as long as the app is configured with an explicit filesystem path. Thanks Aymeric for review and discussion.
* Fixed some missing/extraneous new line warnings.Simon Charette2014-01-261-1/+0
|
* Fixed #21877 -- Renamed django.apps.base to config.Aymeric Augustin2014-01-261-0/+185