Changes between Initial Version and Version 2 of Ticket #29906


Ignore:
Timestamp:
Oct 30, 2018, 10:36:50 AM (6 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29906

    • Property Resolutioninvalid
    • Property Status newclosed
    • Property Component UncategorizedCore (Other)
    • Property Type UncategorizedBug
  • Ticket #29906 – Description

    initial v2  
    11Checking if `django.conf.settings` is a class should not trigger an exception, but the following code triggers ImproperlyConfigured already:
    22
    3 ```
     3{{{
    44from django.conf import settings as django_settings
    55isinstance(django_settings, type)
    6 ```
     6}}}
    77
    88(via https://github.com/pytest-dev/pytest/issues/4266)
Back to Top