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
ffad633a
Kaydet (Commit)
ffad633a
authored
Kas 26, 2002
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #518625: Return objects in Tkinter.
üst
52ea7e92
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
Tkinter.py
Lib/lib-tk/Tkinter.py
+3
-0
NEWS
Misc/NEWS
+5
-0
_tkinter.c
Modules/_tkinter.c
+0
-0
No files found.
Lib/lib-tk/Tkinter.py
Dosyayı görüntüle @
ffad633a
...
...
@@ -45,6 +45,8 @@ try:
except
ImportError
:
_MacOS
=
None
want_objects
=
1
TkVersion
=
float
(
_tkinter
.
TK_VERSION
)
TclVersion
=
float
(
_tkinter
.
TCL_VERSION
)
...
...
@@ -1521,6 +1523,7 @@ class Tk(Misc, Wm):
if
ext
not
in
(
'.py'
,
'.pyc'
,
'.pyo'
):
baseName
=
baseName
+
ext
self
.
tk
=
_tkinter
.
create
(
screenName
,
baseName
,
className
)
self
.
tk
.
wantobjects
(
want_objects
)
if
_MacOS
and
hasattr
(
_MacOS
,
'SchedParams'
):
# Disable event scanning except for Command-Period
_MacOS
.
SchedParams
(
1
,
0
)
...
...
Misc/NEWS
Dosyayı görüntüle @
ffad633a
...
...
@@ -312,6 +312,11 @@ Core and builtins
Extension
modules
-----------------
-
_tkinter
now
returns
Tcl
objects
,
instead
of
strings
.
Objects
which
have
Python
equivalents
are
converted
to
Python
objects
,
other
objects
are
wrapped
.
This
can
be
configured
through
the
wantobjects
method
,
or
Tkinter
.
want_objects
.
-
The
PyBSDDB
wrapper
around
the
Sleepycat
Berkely
DB
library
has
been
added
as
the
package
bsddb
.
The
traditional
bsddb
module
is
still
available
in
source
code
,
but
not
built
automatically
anymore
,
and
...
...
Modules/_tkinter.c
Dosyayı görüntüle @
ffad633a
This diff is collapsed.
Click to expand it.
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