diff options
author | Thomas Orozco <thomas@orozco.fr> | 2015-09-17 21:16:14 +0200 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2015-09-18 08:10:38 -0400 |
commit | d49667ef26c1fba0612151064d414854ae45a830 (patch) | |
tree | bfd0a687d4be6cefd20f7accff4a19b99c3da058 /setup.cfg | |
parent | b02f08e02c34bcf19444c15b54c5f64ddd4c9ef2 (diff) | |
download | django-d49667ef26c1fba0612151064d414854ae45a830.tar.gz |
Refs #25422 -- Added a test for a template tag with type annotations.
This doesn't work in Django 1.8 but was fixed in Django 1.9 as a
side effect of another change.
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ doc_files = docs extras AUTHORS INSTALL LICENSE README.rst install-script = scripts/rpm-install.sh [flake8] -exclude = build,.git,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner,tests/view_tests/tests/py3_test_debug.py +exclude = build,.git,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner,tests/view_tests/tests/py3_test_debug.py,tests/template_tests/annotated_tag_function.py ignore = E123,E128,E402,W503,E731,W601 max-line-length = 119 |