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
21eb4876
Kaydet (Commit)
21eb4876
authored
May 07, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #17765: weakref.ref() no longer silently ignores keyword arguments.
Patch by Georg Brandl.
üst
6dff0205
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
test_weakref.py
Lib/test/test_weakref.py
+4
-0
NEWS
Misc/NEWS
+3
-0
weakrefobject.c
Objects/weakrefobject.c
+3
-1
No files found.
Lib/test/test_weakref.py
Dosyayı görüntüle @
21eb4876
...
...
@@ -133,6 +133,10 @@ class ReferencesTestCase(TestBase):
ref1
=
weakref
.
ref
(
c
,
callback
)
del
c
def
test_constructor_kwargs
(
self
):
c
=
C
()
self
.
assertRaises
(
TypeError
,
weakref
.
ref
,
c
,
callback
=
None
)
def
test_proxy_ref
(
self
):
o
=
C
()
o
.
bar
=
1
...
...
Misc/NEWS
Dosyayı görüntüle @
21eb4876
...
...
@@ -116,6 +116,9 @@ Core and Builtins
Library
-------
- Issue #17765: weakref.ref() no longer silently ignores keyword arguments.
Patch by Georg Brandl.
- Issue #26873: xmlrpc now raises ResponseError on unsupported type tags
instead of silently return incorrect result.
...
...
Objects/weakrefobject.c
Dosyayı görüntüle @
21eb4876
...
...
@@ -268,7 +268,6 @@ static int
parse_weakref_init_args
(
char
*
funcname
,
PyObject
*
args
,
PyObject
*
kwargs
,
PyObject
**
obp
,
PyObject
**
callbackp
)
{
/* XXX Should check that kwargs == NULL or is empty. */
return
PyArg_UnpackTuple
(
args
,
funcname
,
1
,
2
,
obp
,
callbackp
);
}
...
...
@@ -331,6 +330,9 @@ weakref___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
PyObject
*
tmp
;
if
(
!
_PyArg_NoKeywords
(
"ref()"
,
kwargs
))
return
-
1
;
if
(
parse_weakref_init_args
(
"__init__"
,
args
,
kwargs
,
&
tmp
,
&
tmp
))
return
0
;
else
...
...
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