Changes between Initial Version and Version 2 of Ticket #29906
- Timestamp:
- Oct 30, 2018, 10:36:50 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29906
- Property Resolution → invalid
- Property Status new → closed
- Property Component Uncategorized → Core (Other)
- Property Type Uncategorized → Bug
-
Ticket #29906 – Description
initial v2 1 1 Checking if `django.conf.settings` is a class should not trigger an exception, but the following code triggers ImproperlyConfigured already: 2 2 3 ``` 3 {{{ 4 4 from django.conf import settings as django_settings 5 5 isinstance(django_settings, type) 6 ``` 6 }}} 7 7 8 8 (via https://github.com/pytest-dev/pytest/issues/4266)