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
930c3c9e
Kaydet (Commit)
930c3c9e
authored
Eyl 04, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast
64-bit pointer to long (32 bits).
üst
213fec4b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
Misc/NEWS
+3
-0
_tkinter.c
Modules/_tkinter.c
+1
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
930c3c9e
...
@@ -32,6 +32,9 @@ Core and Builtins
...
@@ -32,6 +32,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don'
t
cast
64
-
bit
pointer
to
long
(
32
bits
).
-
Issue
#
18876
:
The
FileIO
.
mode
attribute
now
better
reflects
the
actual
mode
-
Issue
#
18876
:
The
FileIO
.
mode
attribute
now
better
reflects
the
actual
mode
under
which
the
file
was
opened
.
Patch
by
Erik
Bray
.
under
which
the
file
was
opened
.
Patch
by
Erik
Bray
.
...
...
Modules/_tkinter.c
Dosyayı görüntüle @
930c3c9e
...
@@ -2814,7 +2814,7 @@ Tkapp_InterpAddr(PyObject *self, PyObject *args)
...
@@ -2814,7 +2814,7 @@ Tkapp_InterpAddr(PyObject *self, PyObject *args)
if
(
!
PyArg_ParseTuple
(
args
,
":interpaddr"
))
if
(
!
PyArg_ParseTuple
(
args
,
":interpaddr"
))
return
NULL
;
return
NULL
;
return
Py
Int_FromLong
((
long
)
Tkapp_Interp
(
self
));
return
Py
Long_FromVoidPtr
(
Tkapp_Interp
(
self
));
}
}
static
PyObject
*
static
PyObject
*
...
...
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