We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b184d21 commit 1a7d76dCopy full SHA for 1a7d76d
bpython/test/test_repl.py
@@ -195,6 +195,9 @@ def test_name_in_assignment_without_spaces(self):
195
self.assertTrue(self.repl.get_args())
196
self.assertEqual(self.repl.current_func.__name__, "range")
197
198
+ self.setInputLine("foo(1, 2, x,range(")
199
+ self.assertEqual(self.repl.current_func.__name__, "range")
200
+
201
def test_nonexistent_name(self):
202
self.setInputLine("spamspamspam(")
203
self.assertFalse(self.repl.get_args())
0 commit comments