Compare commits

...

2 commits

Author SHA1 Message Date
Stan Ulbrych
790cdae5a0
Lib/idlelib/idle_test/__init__.py: remove commented out duplicate code (#140259) 2025-10-19 00:16:13 -04:00
Marat Khagazheev
115a04b802
gh-138997: Remove false justify fill option from Tkinter docs (#139023)
Co-authored-by: marat <khagazheev@artlebedev.ru>
2025-10-18 23:45:52 -04:00
2 changed files with 1 additions and 6 deletions

View file

@ -839,8 +839,7 @@ geometry
For example: ``fred["geometry"] = "200x100"``.
justify
Legal values are the strings: ``"left"``, ``"center"``, ``"right"``, and
``"fill"``.
Legal values are the strings: ``"left"``, ``"center"``, and ``"right"``.
region
This is a string with four space-delimited elements, each of which is a legal

View file

@ -20,8 +20,4 @@ def load_tests(loader, standard_tests, pattern):
pattern='test_*.py', # Insert here.
top_level_dir=top_dir)
standard_tests.addTests(module_tests)
## module_tests = loader.discover(start_dir=this_dir,
## pattern='test_*.py', # Insert here.
## top_level_dir=top_dir)
## standard_tests.addTests(module_tests)
return standard_tests