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
9441c078
Kaydet (Commit)
9441c078
authored
Agu 03, 2004
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #986929: Add support for wish -sync and -use options.
üst
b217cd80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Tkinter.py
Lib/lib-tk/Tkinter.py
+3
-2
No files found.
Lib/lib-tk/Tkinter.py
Dosyayı görüntüle @
9441c078
...
...
@@ -1546,7 +1546,8 @@ class Tk(Misc, Wm):
"""Toplevel widget of Tk which represents mostly the main window
of an appliation. It has an associated Tcl interpreter."""
_w
=
'.'
def
__init__
(
self
,
screenName
=
None
,
baseName
=
None
,
className
=
'Tk'
,
useTk
=
1
):
def
__init__
(
self
,
screenName
=
None
,
baseName
=
None
,
className
=
'Tk'
,
useTk
=
1
,
sync
=
0
,
use
=
None
):
"""Return a new Toplevel widget on screen SCREENNAME. A new Tcl interpreter will
be created. BASENAME will be used for the identification of the profile file (see
readprofile).
...
...
@@ -1565,7 +1566,7 @@ class Tk(Misc, Wm):
if
ext
not
in
(
'.py'
,
'.pyc'
,
'.pyo'
):
baseName
=
baseName
+
ext
interactive
=
0
self
.
tk
=
_tkinter
.
create
(
screenName
,
baseName
,
className
,
interactive
,
wantobjects
,
useTk
)
self
.
tk
=
_tkinter
.
create
(
screenName
,
baseName
,
className
,
interactive
,
wantobjects
,
useTk
,
sync
,
use
)
if
useTk
:
self
.
_loadtk
()
self
.
readprofile
(
baseName
,
className
)
...
...
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