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
19f61ae1
Kaydet (Commit)
19f61ae1
authored
Ara 18, 1996
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Tabification changes only; the module was already newly named.
üst
b2b44e5b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
32 deletions
+37
-32
operator.c
Modules/operator.c
+37
-32
No files found.
Modules/operator.c
Dosyayı görüntüle @
19f61ae1
...
...
@@ -140,44 +140,48 @@ spam3n(op_setitem , PyObject_SetItem)
static
PyObject
*
op_getslice
(
s
,
a
)
PyObject
*
s
,
*
a
;
PyObject
*
s
,
*
a
;
{
PyObject
*
a1
;
long
a2
,
a3
;
PyObject
*
a1
;
long
a2
,
a3
;
if
(
!
PyArg_ParseTuple
(
a
,
"Oii"
,
&
a1
,
&
a2
,
&
a3
))
return
NULL
;
return
PySequence_GetSlice
(
a1
,
a2
,
a3
);
if
(
!
PyArg_ParseTuple
(
a
,
"Oii"
,
&
a1
,
&
a2
,
&
a3
))
return
NULL
;
return
PySequence_GetSlice
(
a1
,
a2
,
a3
);
}
static
PyObject
*
op_setslice
(
s
,
a
)
PyObject
*
s
,
*
a
;
PyObject
*
s
,
*
a
;
{
PyObject
*
a1
,
*
a4
;
long
a2
,
a3
;
PyObject
*
a1
,
*
a4
;
long
a2
,
a3
;
if
(
!
PyArg_ParseTuple
(
a
,
"OiiO"
,
&
a1
,
&
a2
,
&
a3
,
&
a4
))
return
NULL
;
if
(
!
PyArg_ParseTuple
(
a
,
"OiiO"
,
&
a1
,
&
a2
,
&
a3
,
&
a4
))
return
NULL
;
if
(
-
1
==
PySequence_SetSlice
(
a1
,
a2
,
a3
,
a4
))
return
NULL
;
if
(
-
1
==
PySequence_SetSlice
(
a1
,
a2
,
a3
,
a4
))
return
NULL
;
Py_INCREF
(
Py_None
);
return
Py_None
;
Py_INCREF
(
Py_None
);
return
Py_None
;
}
static
PyObject
*
op_delslice
(
s
,
a
)
PyObject
*
s
,
*
a
;
PyObject
*
s
,
*
a
;
{
PyObject
*
a1
;
long
a2
,
a3
;
PyObject
*
a1
;
long
a2
,
a3
;
if
(
!
PyArg_ParseTuple
(
a
,
"Oii"
,
&
a1
,
&
a2
,
&
a3
))
return
NULL
;
if
(
!
PyArg_ParseTuple
(
a
,
"Oii"
,
&
a1
,
&
a2
,
&
a3
))
return
NULL
;
if
(
-
1
==
PySequence_DelSlice
(
a1
,
a2
,
a3
))
return
NULL
;
if
(
-
1
==
PySequence_DelSlice
(
a1
,
a2
,
a3
))
return
NULL
;
Py_INCREF
(
Py_None
);
return
Py_None
;
Py_INCREF
(
Py_None
);
return
Py_None
;
}
#undef spam1
...
...
@@ -252,18 +256,19 @@ spam2(delslice,__delslice__,
void
initoperator
()
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
/* Create the module and add the functions */
m
=
Py_InitModule4
(
"operator"
,
operator_methods
,
operator_doc
,
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
/* Add some symbolic constants to the module */
d
=
PyModule_GetDict
(
m
);
PyDict_SetItemString
(
d
,
"__version__"
,
PyString_FromString
(
"$Rev$"
));
/* Create the module and add the functions */
m
=
Py_InitModule4
(
"operator"
,
operator_methods
,
operator_doc
,
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
/* Add some symbolic constants to the module */
d
=
PyModule_GetDict
(
m
);
PyDict_SetItemString
(
d
,
"__version__"
,
PyString_FromString
(
"$Rev$"
));
/* Check for errors */
if
(
PyErr_Occurred
())
Py_FatalError
(
"can't initialize module operator"
);
/* Check for errors */
if
(
PyErr_Occurred
())
Py_FatalError
(
"can't initialize module operator"
);
}
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