We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6de5a9 commit 716a92eCopy full SHA for 716a92e
1 file changed
bpython/test/test_autocomplete.py
@@ -21,7 +21,7 @@
21
from bpython._py3compat import py3
22
from bpython.test import mock
23
24
-if is_py3:
+if py3:
25
glob_function = "glob.iglob"
26
else:
27
glob_function = "glob.glob"
@@ -429,7 +429,7 @@ def test_completions_starting_with_different_cases(self):
429
)
430
self.assertSetEqual(matches, set(["ade"]))
431
432
- @unittest.skipUnless(is_py3, "asyncio required")
+ @unittest.skipUnless(py3, "asyncio required")
433
def test_issue_544(self):
434
com = autocomplete.MultilineJediCompletion()
435
code = "@asyncio.coroutine\ndef"
0 commit comments