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
d91e676f
Kaydet (Commit)
d91e676f
authored
Haz 18, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #27343: Fixed error message for conflicting initializers of ctypes.Structure.
üst
5d062d7b
886a5f35
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
10 deletions
+5
-10
test_structures.py
Lib/ctypes/test/test_structures.py
+3
-3
_ctypes.c
Modules/_ctypes/_ctypes.c
+2
-7
No files found.
Lib/ctypes/test/test_structures.py
Dosyayı görüntüle @
d91e676f
...
...
@@ -227,10 +227,10 @@ class StructureTestCase(unittest.TestCase):
def
test_conflicting_initializers
(
self
):
class
POINT
(
Structure
):
_fields_
=
[(
"
x"
,
c_int
),
(
"y"
,
c_in
t
)]
_fields_
=
[(
"
phi"
,
c_float
),
(
"rho"
,
c_floa
t
)]
# conflicting positional and keyword args
self
.
assertRaises
(
TypeError
,
POINT
,
2
,
3
,
x
=
4
)
self
.
assertRaises
(
TypeError
,
POINT
,
2
,
3
,
y
=
4
)
self
.
assertRaises
Regex
(
TypeError
,
"phi"
,
POINT
,
2
,
3
,
phi
=
4
)
self
.
assertRaises
Regex
(
TypeError
,
"rho"
,
POINT
,
2
,
3
,
rho
=
4
)
# too many initializers
self
.
assertRaises
(
TypeError
,
POINT
,
2
,
3
,
4
)
...
...
Modules/_ctypes/_ctypes.c
Dosyayı görüntüle @
d91e676f
...
...
@@ -4065,14 +4065,9 @@ _init_pos_args(PyObject *self, PyTypeObject *type,
}
val
=
PyTuple_GET_ITEM
(
args
,
i
+
index
);
if
(
kwds
&&
PyDict_GetItem
(
kwds
,
name
))
{
char
*
field
=
PyBytes_AsString
(
name
);
if
(
field
==
NULL
)
{
PyErr_Clear
();
field
=
"???"
;
}
PyErr_Format
(
PyExc_TypeError
,
"duplicate values for field
'%s'
"
,
field
);
"duplicate values for field
%R
"
,
name
);
Py_DECREF
(
pair
);
Py_DECREF
(
name
);
return
-
1
;
...
...
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