We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c72d6cf commit e83d920Copy full SHA for e83d920
.travis.yml
@@ -12,5 +12,10 @@ matrix:
12
dist: xenial
13
- python: nightly
14
15
+# TODO: https://bugs.python.org/issue40334
16
+# the PEG parser is currently broken in some cases
17
+ allow_failures:
18
+ - python: nightly
19
+ dist: xenial
20
install: pip install tox
21
script: tox -e py
pyflakes/test/test_api.py
@@ -449,6 +449,8 @@ def evaluate(source):
449
with self.makeTempFile(source) as sourcePath:
450
if PYPY:
451
message = 'end of file (EOF) while scanning triple-quoted string literal'
452
+ elif sys.version_info >= (3, 9):
453
+ message = 'invalid string prefix'
454
else:
455
message = 'invalid syntax'
456
0 commit comments