diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-07-09 18:08:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-09 18:08:33 -0400 |
commit | bce2eb4646021910aa4074d86f44a09b32d0b2b2 (patch) | |
tree | f087dfbe2595d3509354d115c9950b5134fd3625 /Lib/idlelib/idle_test/test_autocomplete.py | |
parent | 1ee5dc15868ea0ad36800899e19a6a87170ada76 (diff) | |
download | cpython-bce2eb4646021910aa4074d86f44a09b32d0b2b2.tar.gz cpython-bce2eb4646021910aa4074d86f44a09b32d0b2b2.zip |
bpo-37765: Add keywords to IDLE tab completions (GH-15138)
Keywords are present in the main module tab completion lists generated by rlcompleter, which is used by REPLs on *nix. Add all keywords to IDLE's main module name list except those already added from builtins (True, False, and None) . This list may also be used by Show Completions on the Edit menu, and its hot key.
Rewrite Completions doc.
Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
Diffstat (limited to 'Lib/idlelib/idle_test/test_autocomplete.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_autocomplete.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_autocomplete.py b/Lib/idlelib/idle_test/test_autocomplete.py index 1841495fcf1..9c113bd893f 100644 --- a/Lib/idlelib/idle_test/test_autocomplete.py +++ b/Lib/idlelib/idle_test/test_autocomplete.py @@ -240,8 +240,11 @@ class AutoCompleteTest(unittest.TestCase): with patch.dict('__main__.__dict__', {'__all__': ['a', 'b']}): s, b = acp.fetch_completions('', ac.ATTRS) self.assertEqual(s, ['a', 'b']) - self.assertIn('__name__', b) # From __main__.__dict__ - self.assertIn('sum', b) # From __main__.__builtins__.__dict__ + self.assertIn('__name__', b) # From __main__.__dict__. + self.assertIn('sum', b) # From __main__.__builtins__.__dict__. + self.assertIn('nonlocal', b) # From keyword.kwlist. + pos = b.index('False') # Test False not included twice. + self.assertNotEqual(b[pos+1], 'False') # Test attributes with name entity. mock = Mock() |