Skip to content

Add options to tkinter widgets #4363

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 54 commits into from
Aug 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
c713a1a
Add type hints for tkinter widget options
Akuli Jul 25, 2020
51dc8ec
clean up imports
Akuli Jul 25, 2020
7bb805d
fix pytype error
Akuli Jul 25, 2020
9389fa7
clean up imports more
Akuli Jul 25, 2020
5550821
add ignore comments
Akuli Jul 25, 2020
729da88
make cnf arguments Optional
Akuli Jul 25, 2020
3b45c1a
add widget name option to tkinter.ttk.Entry
Akuli Jul 25, 2020
cbeab82
update tkinter_options_test.py to use Optional cnf annotation
Akuli Jul 25, 2020
cacae45
update pytype and delete copy/pasta
Akuli Jul 31, 2020
0fb14fc
require Combobox and Spinbox values to be strings
Akuli Jul 31, 2020
aa181e1
Merge remote-tracking branch 'origin/master' into tkinter-options-nos…
Akuli Jul 31, 2020
aee48e7
Merge branch 'master' into mergehell
Akuli Aug 7, 2020
7dd64bd
remove unused imports
Akuli Aug 7, 2020
a802934
Merge branch 'master' into tkinter-options-noscript-pr-squashed
Akuli Aug 8, 2020
29fc43a
simplify find_all_classdefs
Akuli Aug 8, 2020
f9bffea
make comments brief
Akuli Aug 8, 2020
68b023f
fix typo
Akuli Aug 8, 2020
57f377e
Merge branch 'master' into tkinter-options-noscript-pr-squashed
Akuli Aug 8, 2020
6863bec
better comment
Akuli Aug 8, 2020
96673b5
more permissive type for tabs option of tkinter.Text
Akuli Aug 9, 2020
bde9e11
don't lie about inheritance
Akuli Aug 10, 2020
d28aff4
remove unnecessary copy/pasta
Akuli Aug 10, 2020
a7e857f
Merge remote-tracking branch 'origin/master' into tkinter-options-nos…
Akuli Aug 10, 2020
77fade2
revert changes to master arguments (belongs to separate PR)
Akuli Aug 10, 2020
0d6a93d
remove more "fake inheritance"
Akuli Aug 10, 2020
b45827a
fix Entry base classes
Akuli Aug 10, 2020
f2cf579
add missing type ignore comments
Akuli Aug 10, 2020
b89e62b
clean up repeated option name Literals into type aliases
Akuli Aug 10, 2020
c55627e
Merge remote-tracking branch 'origin/master' into tkinter-options-nos…
Akuli Aug 15, 2020
c3d09fb
Merge remote-tracking branch 'origin/master' into tkinter-options-nos…
Akuli Aug 16, 2020
c42a72c
delete tkinter options test
Akuli Aug 16, 2020
d41ba5f
revert pytype_test changes
Akuli Aug 16, 2020
68c318f
add border as an alias for borderwidth
Akuli Aug 17, 2020
88ac630
accept str for _TkinterSequence[str] when appropriate
Akuli Aug 17, 2020
d26428c
add screen option to Tk and Toplevel
Akuli Aug 17, 2020
c9033ed
add undocumented offset option
Akuli Aug 17, 2020
e9c96fc
support invcmd and vcmd
Akuli Aug 17, 2020
5cd4649
add undocumented container option to LabelFrame
Akuli Aug 17, 2020
b11fb4f
add undocumented padding option to some ttk widgets
Akuli Aug 17, 2020
9f8c2ae
add undocumented background,foreground,font options to some ttk classes
Akuli Aug 17, 2020
fc73134
fix missing orient copy/pasta
Akuli Aug 17, 2020
b414bb0
add undocumented borderwidth option to ttk.Label and ttk.Labelframe
Akuli Aug 17, 2020
f4c8e12
add validate, invalidcommand and validatecommand to ttk.Combobox and …
Akuli Aug 17, 2020
398eb8e
add undocumented show option to ttk.Combobox and ttk.Spinbox
Akuli Aug 17, 2020
9d57ce7
add undocumented xscrollcommand to Combobox
Akuli Aug 17, 2020
a533c50
add undocumented state option to ttk.Scale
Akuli Aug 17, 2020
b9d38f2
add undocumented relief option to ttk.Labelframe
Akuli Aug 17, 2020
dfbcbda
add some ttk.Entry options to ttk.Spinbox
Akuli Aug 17, 2020
58b445a
fix typo
Akuli Aug 17, 2020
3ea4aed
Revert "fix missing orient copy/pasta"
Akuli Aug 17, 2020
8d72737
Merge remote-tracking branch 'origin/master' into tkinter-options-nos…
Akuli Aug 17, 2020
2c40d07
move _FontDescription back to tkinter.font
Akuli Aug 17, 2020
c6b47e4
add another pytype issue comment
Akuli Aug 17, 2020
9f2b506
Merge remote-tracking branch 'origin/master' into tkinter-options-nos…
Akuli Aug 17, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements-tests-py3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ flake8==3.8.3
flake8-bugbear==20.1.4
flake8-pyi==20.5.0
isort[pyproject]==5.1.1
pytype>=2020.07.24
pytype>=2020.07.30
Loading