Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
a8de696d
Kaydet (Commit)
a8de696d
authored
Kas 29, 2017
tarafından
Miss Islington (bot)
Kaydeden (comit)
Terry Jan Reedy
Kas 29, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30781: Remove unused imports in idlelib.configdialog. (GH-4627) (#4630)
(cherry picked from commit
e8f7c78a
)
üst
38ecf573
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
configdialog.py
Lib/idlelib/configdialog.py
+3
-4
No files found.
Lib/idlelib/configdialog.py
Dosyayı görüntüle @
a8de696d
...
@@ -11,8 +11,8 @@ Refer to comments in EditorWindow autoindent code for details.
...
@@ -11,8 +11,8 @@ Refer to comments in EditorWindow autoindent code for details.
"""
"""
from
tkinter
import
(
Toplevel
,
Listbox
,
Text
,
Scale
,
Canvas
,
from
tkinter
import
(
Toplevel
,
Listbox
,
Text
,
Scale
,
Canvas
,
StringVar
,
BooleanVar
,
IntVar
,
TRUE
,
FALSE
,
StringVar
,
BooleanVar
,
IntVar
,
TRUE
,
FALSE
,
TOP
,
BOTTOM
,
RIGHT
,
LEFT
,
SOLID
,
GROOVE
,
NORMAL
,
DISABLED
,
TOP
,
BOTTOM
,
RIGHT
,
LEFT
,
SOLID
,
GROOVE
,
NONE
,
BOTH
,
X
,
Y
,
W
,
E
,
EW
,
NS
,
NSEW
,
NW
,
CENTER
,
NONE
,
BOTH
,
X
,
Y
,
W
,
E
,
EW
,
NS
,
NSEW
,
NW
,
HORIZONTAL
,
VERTICAL
,
ANCHOR
,
ACTIVE
,
END
)
HORIZONTAL
,
VERTICAL
,
ANCHOR
,
ACTIVE
,
END
)
from
tkinter.ttk
import
(
Button
,
Checkbutton
,
Entry
,
Frame
,
Label
,
LabelFrame
,
from
tkinter.ttk
import
(
Button
,
Checkbutton
,
Entry
,
Frame
,
Label
,
LabelFrame
,
OptionMenu
,
Notebook
,
Radiobutton
,
Scrollbar
,
Style
)
OptionMenu
,
Notebook
,
Radiobutton
,
Scrollbar
,
Style
)
...
@@ -25,7 +25,6 @@ from idlelib.config_key import GetKeysDialog
...
@@ -25,7 +25,6 @@ from idlelib.config_key import GetKeysDialog
from
idlelib.dynoption
import
DynOptionMenu
from
idlelib.dynoption
import
DynOptionMenu
from
idlelib
import
macosx
from
idlelib
import
macosx
from
idlelib.query
import
SectionName
,
HelpSource
from
idlelib.query
import
SectionName
,
HelpSource
from
idlelib.tabbedpages
import
TabbedPageSet
from
idlelib.textview
import
view_text
from
idlelib.textview
import
view_text
from
idlelib.autocomplete
import
AutoComplete
from
idlelib.autocomplete
import
AutoComplete
from
idlelib.codecontext
import
CodeContext
from
idlelib.codecontext
import
CodeContext
...
@@ -1443,7 +1442,7 @@ class KeysPage(Frame):
...
@@ -1443,7 +1442,7 @@ class KeysPage(Frame):
self
.
bindingslist
[
'xscrollcommand'
]
=
scroll_target_x
.
set
self
.
bindingslist
[
'xscrollcommand'
]
=
scroll_target_x
.
set
self
.
button_new_keys
=
Button
(
self
.
button_new_keys
=
Button
(
frame_custom
,
text
=
'Get New Keys for Selection'
,
frame_custom
,
text
=
'Get New Keys for Selection'
,
command
=
self
.
get_new_keys
,
state
=
DISABLED
)
command
=
self
.
get_new_keys
,
state
=
'disabled'
)
# frame_key_sets.
# frame_key_sets.
frames
=
[
Frame
(
frame_key_sets
,
padding
=
2
,
borderwidth
=
0
)
frames
=
[
Frame
(
frame_key_sets
,
padding
=
2
,
borderwidth
=
0
)
for
i
in
range
(
2
)]
for
i
in
range
(
2
)]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment