8000 bpo-33987: IDLE - use ttk Frame for ttk widgets by terryjreedy · Pull Request #11395 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-33987: IDLE - use ttk Frame for ttk widgets #11395

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 7 commits into from
Jan 3, 2019
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Update grep.py
insert newline
  • Loading branch information
terryjreedy authored Dec 31, 2018
commit a8dd9e3609f2eb4253c54440f936057eddb239e3
1 change: 1 addition & 0 deletions Lib/idlelib/grep.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ def _grep_dialog(parent): # htest #
from tkinter import Toplevel, Text, SEL, END
from tkinter.ttk import Frame, Button
from idlelib.pyshell import PyShellFileList

top = Toplevel(parent)
top.title("Test GrepDialog")
x, y = map(int, parent.geometry().split('+')[1:])
Expand Down
0