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
dc3c239b
Kaydet (Commit)
dc3c239b
authored
Kas 19, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#5037 proxy __unicode__ correctly
üst
9eac119b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
0 deletions
+31
-0
test_weakref.py
Lib/test/test_weakref.py
+11
-0
NEWS
Misc/NEWS
+3
-0
weakrefobject.c
Objects/weakrefobject.c
+17
-0
No files found.
Lib/test/test_weakref.py
Dosyayı görüntüle @
dc3c239b
...
...
@@ -188,6 +188,17 @@ class ReferencesTestCase(TestBase):
self
.
assertEqual
(
L3
[:
5
],
p3
[:
5
])
self
.
assertEqual
(
L3
[
2
:
5
],
p3
[
2
:
5
])
def
test_proxy_unicode
(
self
):
# See bug 5037
class
C
(
object
):
def
__str__
(
self
):
return
"string"
def
__unicode__
(
self
):
return
u"unicode"
instance
=
C
()
self
.
assertTrue
(
"__unicode__"
in
dir
(
weakref
.
proxy
(
instance
)))
self
.
assertEqual
(
unicode
(
weakref
.
proxy
(
instance
)),
u"unicode"
)
def
test_proxy_index
(
self
):
class
C
:
def
__index__
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
dc3c239b
...
...
@@ -440,6 +440,9 @@ Core and Builtins
Library
-------
- Issue #5037: Proxy the __unicode__ special method instead to __unicode__
instead of __str__.
- Issue #7341: Close the internal file object in the TarFile constructor in
case of an error.
...
...
Objects/weakrefobject.c
Dosyayı görüntüle @
dc3c239b
...
...
@@ -433,6 +433,13 @@ proxy_checkref(PyWeakReference *proxy)
return generic(proxy, v, w); \
}
#define WRAP_METHOD(method, special) \
static PyObject * \
method(PyObject *proxy) { \
UNWRAP(proxy); \
return PyObject_CallMethod(proxy, special, ""); \
}
/* direct slots */
...
...
@@ -593,6 +600,15 @@ proxy_iternext(PyWeakReference *proxy)
}
WRAP_METHOD
(
proxy_unicode
,
"__unicode__"
);
static
PyMethodDef
proxy_methods
[]
=
{
{
"__unicode__"
,
(
PyCFunction
)
proxy_unicode
,
METH_NOARGS
},
{
NULL
,
NULL
}
};
static
PyNumberMethods
proxy_as_number
=
{
proxy_add
,
/*nb_add*/
proxy_sub
,
/*nb_subtract*/
...
...
@@ -684,6 +700,7 @@ _PyWeakref_ProxyType = {
0
,
/* tp_weaklistoffset */
(
getiterfunc
)
proxy_iter
,
/* tp_iter */
(
iternextfunc
)
proxy_iternext
,
/* tp_iternext */
proxy_methods
,
/* tp_methods */
};
...
...
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