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
9f0b51e4
Kaydet (Commit)
9f0b51e4
authored
Kas 09, 2010
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10359: Use Py_UNICODE for the typecode in array
And don't create non constant array, invalid in ISO C.
üst
3e2b7171
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
arraymodule.c
Modules/arraymodule.c
+9
-7
No files found.
Modules/arraymodule.c
Dosyayı görüntüle @
9f0b51e4
...
...
@@ -22,7 +22,7 @@ struct arrayobject; /* Forward */
* functions aren't visible yet.
*/
struct
arraydescr
{
int
typecode
;
Py_UNICODE
typecode
;
int
itemsize
;
PyObject
*
(
*
getitem
)(
struct
arrayobject
*
,
Py_ssize_t
);
int
(
*
setitem
)(
struct
arrayobject
*
,
Py_ssize_t
,
PyObject
*
);
...
...
@@ -1428,7 +1428,7 @@ representation.");
static
PyObject
*
array_tostring
(
arrayobject
*
self
,
PyObject
*
unused
)
{
if
(
PyErr_WarnEx
(
PyExc_DeprecationWarning
,
if
(
PyErr_WarnEx
(
PyExc_DeprecationWarning
,
"tostring() is deprecated. Use tobytes() instead."
,
2
)
!=
0
)
return
NULL
;
return
array_tobytes
(
self
,
unused
);
...
...
@@ -1680,17 +1680,16 @@ static PyObject *array_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
* NULL is returned to indicate a failure.
*/
static
PyObject
*
make_array
(
PyTypeObject
*
arraytype
,
int
typecode
,
PyObject
*
items
)
make_array
(
PyTypeObject
*
arraytype
,
Py_UNICODE
typecode
,
PyObject
*
items
)
{
PyObject
*
new_args
;
PyObject
*
array_obj
;
PyObject
*
typecode_obj
;
Py_UNICODE
typecode_str
[
1
]
=
{
typecode
};
assert
(
arraytype
!=
NULL
);
assert
(
items
!=
NULL
);
typecode_obj
=
PyUnicode_FromUnicode
(
typecode_str
,
1
);
typecode_obj
=
PyUnicode_FromUnicode
(
&
typecode
,
1
);
if
(
typecode_obj
==
NULL
)
return
NULL
;
...
...
@@ -1720,14 +1719,17 @@ array_reconstructor(PyObject *self, PyObject *args)
PyObject
*
items
;
PyObject
*
converted_items
;
PyObject
*
result
;
int
typecode
;
int
typecode_int
;
Py_UNICODE
typecode
;
enum
machine_format_code
mformat_code
;
struct
arraydescr
*
descr
;
if
(
!
PyArg_ParseTuple
(
args
,
"OCiO:array._array_reconstructor"
,
&
arraytype
,
&
typecode
,
&
mformat_code
,
&
items
))
&
arraytype
,
&
typecode
_int
,
&
mformat_code
,
&
items
))
return
NULL
;
typecode
=
(
Py_UNICODE
)
typecode_int
;
if
(
!
PyType_Check
(
arraytype
))
{
PyErr_Format
(
PyExc_TypeError
,
"first argument must a type object, not %.200s"
,
...
...
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