diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-26 01:13:17 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-26 01:13:17 +0900 |
commit | cf2061dfaddcc89c1fd1db826e050a6f020a2b57 (patch) | |
tree | dc72f685ab4c528a222dd2028b1a438067c22db7 /tests/test_domain_cpp.py | |
parent | 2c91a5241856759cdc7697f26c99738c21840672 (diff) | |
download | sphinx-git-cf2061dfaddcc89c1fd1db826e050a6f020a2b57.tar.gz |
Fix flake8 violations
Diffstat (limited to 'tests/test_domain_cpp.py')
-rw-r--r-- | tests/test_domain_cpp.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 195b57cf8..584e825ce 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -31,7 +31,7 @@ def parse(name, string): if not parser.eof: print("Parsing stopped at", parser.pos) print(string) - print('-'*parser.pos + '^') + print('-' * parser.pos + '^') raise DefinitionError("") # The scopedness would usually have been set by CPPEnumObject if name == "enum": @@ -495,7 +495,6 @@ def test_attributes(): output='__attribute__(()) static inline void f()') - # def test_print(): # # used for getting all the ids out for checking # for a in ids: |