bpo-40723: Make IDLE autocomplete test run without __main__.__file__ (GH-20311)

This was the only failure running unittest.main(test.test_idle) after imports.
(cherry picked from commit 905b3cd05f)

Co-authored-by: Florian Dahlitz <f2dahlitz@freenet.de>
This commit is contained in:
Miss Islington (bot) 2020-05-24 04:12:11 -07:00 committed by GitHub
parent 0af9bef61a
commit 82397e2d97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,8 @@ Released on 2019-12-16?
======================================
bpo-40723: Make test_idle pass when run after import.
bpo-38689: IDLE will no longer freeze when inspect.signature fails
when fetching a calltip.

View File

@ -227,7 +227,7 @@ class AutoCompleteTest(unittest.TestCase):
acp = self.autocomplete
small, large = acp.fetch_completions(
'', ac.ATTRS)
if __main__.__file__ != ac.__file__:
if hasattr(__main__, '__file__') and __main__.__file__ != ac.__file__:
self.assertNotIn('AutoComplete', small) # See issue 36405.
# Test attributes

View File

@ -0,0 +1 @@
Make test_idle pass when run after import.