diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-05-06 13:50:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-06 13:50:38 +0300 |
commit | 15dbe8570f215bfb4910cdd79b43dafb2ab6b38f (patch) | |
tree | 4bd84c0560fba0aea940aa74056ae57ea987d970 /Lib/tkinter/test/widget_tests.py | |
parent | d707d073be5ecacb7ad341a1c1716f4998907d6b (diff) | |
download | cpython-15dbe8570f215bfb4910cdd79b43dafb2ab6b38f.tar.gz cpython-15dbe8570f215bfb4910cdd79b43dafb2ab6b38f.zip |
gh-91827: Add method info_pathlevel() in tkinter (GH-91829)
Diffstat (limited to 'Lib/tkinter/test/widget_tests.py')
-rw-r--r-- | Lib/tkinter/test/widget_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/test/widget_tests.py b/Lib/tkinter/test/widget_tests.py index 37d1979c23f..a450544c3ee 100644 --- a/Lib/tkinter/test/widget_tests.py +++ b/Lib/tkinter/test/widget_tests.py @@ -517,4 +517,4 @@ def add_standard_options(*source_classes): def setUpModule(): if test.support.verbose: tcl = tkinter.Tcl() - print('patchlevel =', tcl.call('info', 'patchlevel')) + print('patchlevel =', tcl.call('info', 'patchlevel'), flush=True) |