diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2012-07-14 14:27:26 +0200 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2012-07-14 14:27:26 +0200 |
commit | 7f2d5a3f561d48864211642097f05c6a5d2c2a55 (patch) | |
tree | 678880aa75b30cf992fe6386aeafd56b37d8dc90 /testsuite | |
parent | 4c0e2d0b71764594604c8fe8f4541646d426aa6a (diff) | |
download | pep8-7f2d5a3f561d48864211642097f05c6a5d2c2a55.tar.gz |
Fix false positive E401; issue #104.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/E70.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/E70.py b/testsuite/E70.py index e0a9a7d..bfcfc8c 100644 --- a/testsuite/E70.py +++ b/testsuite/E70.py @@ -2,3 +2,6 @@ if a: a = False #: E702 a = False; b = True +#: E702 +import bdist_egg; bdist_egg.write_safety_flag(cmd.egg_info, safe) +#: |