[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-04-25 Thread Tal Einat


Tal Einat  added the comment:

Saaheer, it seems like you have things from older versions of IDLE in your IDLE 
config file (in your .idlerc directory). Specifically, the built-in extensions 
have all been converted to be integral parts of IDLE, and must be removed from 
your configuration file.

I suggest moving/renaming your .idlerc directory so that IDLE can create a new, 
clean .idlerc. Then make your personal configurations again, preferably using 
IDLE's configuration dialog.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-04-25 Thread Saaheer Purav


Saaheer Purav  added the comment:

This is the error message that I get:

Failed to import extension:  AutoExpand
Failed to load extension 'AutoExpand'
Traceback (most recent call last):
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\idlelib\editor.py",
 line 1115, in load_extension
mod = importlib.import_module('.' + fname, package=__package__)
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py",
 line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'idlelib.AutoExpand'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\idlelib\editor.py",
 line 1099, in load_standard_extensions
self.load_extension(name)
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\idlelib\editor.py",
 line 1117, in load_extension
mod = importlib.import_module(fname)
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py",
 line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'AutoExpand'

Failed to import extension:  CallTips
Failed to load extension 'CallTips'
Traceback (most recent call last):
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\idlelib\editor.py",
 line 1115, in load_extension
mod = importlib.import_module('.' + fname, package=__package__)
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py",
 line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'idlelib.CallTips'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\idlelib\editor.py",
 line 1099, in load_standard_extensions
self.load_extension(name)
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\idlelib\editor.py",
 line 1117, in load_extension
mod = importlib.import_module(fname)
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py",
 line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'CallTips'

Failed to import extension:  ZoomHeight
Failed to load extension 'ZoomHeight'
Traceback (most recent call last):
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\idlelib\editor.py",
 line 1115, in load_extension
mod = importlib.import_module('.' + fname, package=__package__)
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py",
 line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'idlelib.ZoomHeight'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\idlelib\editor.py",
 line 1099, in load_standard_extensions
self.load_extension(name)
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\idlelib\editor.py",
 line 1117, in load_extension
mod = importlib.import_module(fname)
  File 
"C:\Users\saahe\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py",
 line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'ZoomHeight'

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-04-24 Thread Tal Einat


Tal Einat  added the comment:

Saaheer, could you please run IDLE by opening a command window (Run -> cmd.exe) 
or PowerShell, then running `python -m idlelib`? Then when this happens, please 
check the command / PowerShell window to see whether an error message and/or 
traceback has appeared there, and if so please copy it here. That would greatly 
help us to diagnose the issue.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-03-27 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

What does Help => About IDLE say about the tk version?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-03-27 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

Upgrading to bugfix releases is usually a good idea.  Aside from everything 
else, there is usually some change to IDLE.

Again, how are you installing python?  From the python.org installer (which 
one)?  From the Window store?  From a 3rd party installer?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-03-24 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

Once you touch the idlelib/*.def files or manually edit the .idlerc/*.cfg 
files, you are on your own.  You could rename any *.def files and try to 
'repair' the installation, or delete the *.cfg files and rebuild then through 
the dialog.  

You could also start IDLE from Command Prompt with 'py -m idlelib' and report 
any error messages.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-03-22 Thread Saaheer Purav


Saaheer Purav  added the comment:

I have tried everything like going to the .idlerc folder and making changes, 
but nothing worked. Finally, I had to change the original config files and it 
worked because Python is assuming that another theme which I put under 'IDLE 
Classic' is the original one. Also, the key for run-module(F5) doesn't work. In 
the original config file, the key for run-module is . However, Python 
does not read only that particular line and in the configure IDLE it shows that 
the field for run-module is empty.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-03-22 Thread Saaheer Purav


Saaheer Purav  added the comment:

I use Windows 10. I had a similar issue with python 3.8.0, which is why I 
uninstalled it and installed Python 3.8.2. The issue had been cleared, but then 
after a few weeks it happened again.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-03-21 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

I have no problem with 3.8.2 on Windows 10.  Tal and Cheryl, what about your 
systems?

Saaheer, what OS, and if macOS, what version are you using?  (macOS Catalina 
has had some problems.)  How did you install or upgrade to 3.8.2?

--
nosy: +cheryl.sabella, taleinat

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40031] Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.

2020-03-21 Thread Saaheer Purav


New submission from Saaheer Purav :

In Python 3.8.2 IDLE, when I try to select a new theme or change the font and 
font size in the Configure IDLE section, and click on 'Ok' or 'Apply', nothing 
happens. The buttons have no action. Even when I tried to press F5 to run 
module, nothing happened. In the 'config-keys.def' file, I edited the run 
module to 'F6' and tried to run module, but still nothing happened. However, 
when I edited the file back to 'F5' for run module, it worked, strangely. But 
still I am unable to select a new theme or change the font and font size as the 
buttons do not work.

--
assignee: terry.reedy
components: IDLE
messages: 364735
nosy: Vader27, terry.reedy
priority: normal
severity: normal
status: open
title: Python Configure IDLE 'Ok' and 'Apply' buttons do not seem to work.
type: behavior
versions: Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com