[issue26216] run runtktests.py error when test tkinter

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: runtktests.py was deleted here: https://github.com/python/cpython/pull/28929 -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue26216] run runtktests.py error when test tkinter

2020-11-04 Thread Brett Cannon
Change by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue26216] run runtktests.py error when test tkinter

2016-01-30 Thread Martin Panter
Martin Panter added the comment: According to Issue 18018, the SystemError is changed to ImportError in 3.6, and in Python 2 (or before 3.3) it raised ValueError. To me, the more important question is: is running runtktests.py as a file meant to be supported, or should it be run as python -m t

[issue26216] run runtktests.py error when test tkinter

2016-01-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is rather import machinery issue. The simple reproducer: $ ./python -c "import importlib; importlib.import_module('.bar', 'foo')" Traceback (most recent call last): File "", line 1, in File "/home/serhiy/py/cpython/Lib/importlib/__init__.py", line 12

[issue26216] run runtktests.py error when test tkinter

2016-01-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue26216] run runtktests.py error when test tkinter

2016-01-27 Thread allensll
New submission from allensll: When I run the following: python ...\Python35\Lib\tkinter\test\runtktests.py Error: SystemError: Parent module 'tkinter.test' not loaded, cannot perform relative import When I add "import tkinter.test" into runtktests.py,it's working. -- components: Tkinter