diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2018-06-21 01:25:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-21 01:25:59 (GMT) |
commit | a361e89d5ae3daefe9e8b8a7e889cd2ad8c45b77 (patch) | |
tree | f213feb31b204946297645de94ca774ca65fd777 /Lib/idlelib/idle_test/test_config.py | |
parent | 87a927325e3856621790a39d8718ff24a19510aa (diff) | |
download | cpython-a361e89d5ae3daefe9e8b8a7e889cd2ad8c45b77.zip cpython-a361e89d5ae3daefe9e8b8a7e889cd2ad8c45b77.tar.gz cpython-a361e89d5ae3daefe9e8b8a7e889cd2ad8c45b77.tar.bz2 |
bpo-33906: Rename idlelib.windows as window (#7833)
Match Window on the main menu and remove last plural module name.
Change imports, test, and attribute references to match new name.
Diffstat (limited to 'Lib/idlelib/idle_test/test_config.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_config.py b/Lib/idlelib/idle_test/test_config.py index e6f553d..f3d9f21 100644 --- a/Lib/idlelib/idle_test/test_config.py +++ b/Lib/idlelib/idle_test/test_config.py @@ -255,9 +255,9 @@ class IdleConfTest(unittest.TestCase): with self.assertRaises(FileNotFoundError): conf.GetUserCfgDir() - @unittest.skipIf(not sys.platform.startswith('win'), 'this is test for windows system') + @unittest.skipIf(not sys.platform.startswith('win'), 'this is test for Windows system') def test_get_user_cfg_dir_windows(self): - "Test to get user config directory under windows" + "Test to get user config directory under Windows" conf = self.new_config(_utest=True) # Check normal way should success |