The Vulnerability History Project
Vulnerabilities
Insights
Curate
Tags
All
Projects
CWEs
Languages
Lessons
Severities
Subsystems
More
News
Projects We Study
How to Contribute
By the Numbers
About Us
Toggle Theme
Warning: Our website does not support Internet Explorer, please use Edge instead.
Fixed #17061 -- Factored out importing object from a dotted path
Thanks Carl Meyer for the report.
by
Nick the Sea Slug 2013-02-02 21:58:02 UTC
commit 7c5b244826be636429791a8ca76b2adc678e82e7
Django
django/conf/__init__.py
+3
-2
django/contrib/admin/tests.py
+6
-2
django/contrib/auth/__init__.py
+15
-3
django/contrib/auth/hashers.py
+7
-2
django/contrib/formtools/tests/wizard/loadstorage.py
+8
-4
django/contrib/formtools/wizard/storage/__init__.py
+14
-6
django/contrib/formtools/wizard/storage/exceptions.py
+4
-1
django/contrib/messages/storage/__init__.py
+24
-1
django/contrib/staticfiles/finders.py
+12
-2
django/core/cache/__init__.py
+9
-8
django/core/cache/backends/base.py
+4
-2
django/core/files/storage.py
+17
-3
django/core/files/uploadhandler.py
+16
-2
django/core/handlers/base.py
+15
-5
django/core/mail/__init__.py
+14
-2
django/core/servers/basehttp.py
+19
-6
django/core/signing.py
+14
-2
django/db/utils.py
+11
-2
django/template/context.py
+12
-2
django/template/loader.py
+10
-2
django/utils/module_loading.py
-26
django/views/debug.py
+12
-3
tests/regressiontests/file_storage/tests.py
+6
-6
tests/regressiontests/utils/module_loading.py
+1
-19
tests/regressiontests/utils/tests.py
+1
-2
tests/regressiontests/wsgi/tests.py
+2
-2
expand_less