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
463bd4b5
Kaydet (Commit)
463bd4b5
authored
Eyl 23, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19034: repr() for tkinter.Tcl_Obj now exposes string reperesentation.
üst
64a9972b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
NEWS
Misc/NEWS
+2
-0
_tkinter.c
Modules/_tkinter.c
+7
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
463bd4b5
...
...
@@ -12,6 +12,8 @@ Core and Builtins
Library
-------
-
Issue
#
19034
:
repr
()
for
tkinter
.
Tcl_Obj
now
exposes
string
reperesentation
.
-
Issue
#
18978
:
``
urllib
.
request
.
Request
``
now
allows
the
method
to
be
indicated
on
the
class
and
no
longer
sets
it
to
None
in
``
__init__
``.
...
...
Modules/_tkinter.c
Dosyayı görüntüle @
463bd4b5
...
...
@@ -737,8 +737,13 @@ PyTclObject_str(PyTclObject *self, void *ignored)
static
PyObject
*
PyTclObject_repr
(
PyTclObject
*
self
)
{
return
PyUnicode_FromFormat
(
"<%s object at %p>"
,
self
->
value
->
typePtr
->
name
,
self
->
value
);
PyObject
*
repr
,
*
str
=
PyTclObject_str
(
self
,
NULL
);
if
(
str
==
NULL
)
return
NULL
;
repr
=
PyUnicode_FromFormat
(
"<%s object: %R>"
,
self
->
value
->
typePtr
->
name
,
str
);
Py_DECREF
(
str
);
return
repr
;
}
#define TEST_COND(cond) ((cond) ? Py_True : Py_False)
...
...
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