[issue24225] IDLE test filenames don't match script filenames.

2015-05-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: The idlelib xyz.py filenames (about 60) are a collectively a mess. There are about 6 different styles. I would like to *eventually* change all to short, lowercase, PEP-8 names, but the reasons have nothing to do with test names (which intentionally look to th

[issue24225] IDLE test filenames don't match script filenames.

2015-05-19 Thread Al Sweigart
Al Sweigart added the comment: Serhiy: I completely understand. My first instinct is to look at mass renamings and dismiss it as cosmetic changes for the sake of cosmetic changes. However, there are several problems that this fix corrects: 1) It makes it obvious which identifiers are modules a

[issue24225] IDLE test filenames don't match script filenames.

2015-05-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Usually we avoid such mass renamings. This is errorprone and can break third-party plugins or even applications that use parts of IDLE. It also will made much harder to transfer patches between versions. I'm -1 for this proposition. -- nosy: +kbk, r

[issue24225] IDLE test filenames don't match script filenames.

2015-05-19 Thread Al Sweigart
Al Sweigart added the comment: For reference, here's all the files and their new filenames: aboutDialog.pyabout_dialog.py AutoComplete.pyautocomplete.py AutoCompleteWindow.pyautocomplete_window.py AutoExpand.pyautoexpand.py Bindings.pybindings.py CallTips.pycalltips.py Ca

[issue24225] IDLE test filenames don't match script filenames.

2015-05-19 Thread Al Sweigart
Al Sweigart added the comment: (I can reformat these patch files if that helps.) -- Added file: http://bugs.python.org/file39429/idle_updating_imports.patch ___ Python tracker __

[issue24225] IDLE test filenames don't match script filenames.

2015-05-19 Thread Al Sweigart
Changes by Al Sweigart : Added file: http://bugs.python.org/file39428/idletest_renaming.patch ___ Python tracker ___ ___ Python-bugs-list mail

[issue24225] IDLE test filenames don't match script filenames.

2015-05-19 Thread Al Sweigart
Al Sweigart added the comment: The idle_renaming.patch file is for the file renamings under idlelib The idletest_renaming.patch file is for the file renamings under idlelib/idle_test The idle_updating_imports.patch file is for the content updates (mostly for import statements) due to the rena

[issue24225] IDLE test filenames don't match script filenames.

2015-05-18 Thread Al Sweigart
New submission from Al Sweigart: >From the idlelib/idle_test/README.txt file: "The idle_test subdirectory should contain a test_xyz.py for each, where 'xyz' is lowercased even if xyz.py is not." However, this means the test file names are inconsistent with the scripts they test. Of the 20 tes