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
2aff335c
Kaydet (Commit)
2aff335c
authored
Eki 17, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#9204: remove mentions of removed types in the types module.
üst
418cc734
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
15 additions
and
29 deletions
+15
-29
bytearray.rst
Doc/c-api/bytearray.rst
+2
-1
bytes.rst
Doc/c-api/bytes.rst
+1
-3
complex.rst
Doc/c-api/complex.rst
+1
-1
dict.rst
Doc/c-api/dict.rst
+1
-6
float.rst
Doc/c-api/float.rst
+1
-3
list.rst
Doc/c-api/list.rst
+2
-2
long.rst
Doc/c-api/long.rst
+1
-1
slice.rst
Doc/c-api/slice.rst
+2
-4
tuple.rst
Doc/c-api/tuple.rst
+2
-4
type.rst
Doc/c-api/type.rst
+2
-4
No files found.
Doc/c-api/bytearray.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -16,7 +16,8 @@ Byte Array Objects
.. c:var:: PyTypeObject PyByteArray_Type
This instance of :c:type:`PyTypeObject` represents the Python bytearray type;
it is the same object as ``bytearray`` in the Python layer.
it is the same object as :class:`bytearray` in the Python layer.
Type check macros
^^^^^^^^^^^^^^^^^
...
...
Doc/c-api/bytes.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -18,10 +18,8 @@ called with a non-bytes parameter.
.. c:var:: PyTypeObject PyBytes_Type
.. index:: single: BytesType (in module types)
This instance of :c:type:`PyTypeObject` represents the Python bytes type; it
is the same object as
``bytes`` in the Python layer.
.
is the same object as
:class:`bytes` in the Python layer
.
.. c:function:: int PyBytes_Check(PyObject *o)
...
...
Doc/c-api/complex.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -82,7 +82,7 @@ Complex Numbers as Python Objects
.. c:var:: PyTypeObject PyComplex_Type
This instance of :c:type:`PyTypeObject` represents the Python complex number
type. It is the same object as
``complex`` and ``types.ComplexType``
.
type. It is the same object as
:class:`complex` in the Python layer
.
.. c:function:: int PyComplex_Check(PyObject *p)
...
...
Doc/c-api/dict.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -15,13 +15,8 @@ Dictionary Objects
.. c:var:: PyTypeObject PyDict_Type
.. index::
single: DictType (in module types)
single: DictionaryType (in module types)
This instance of :c:type:`PyTypeObject` represents the Python dictionary
type. This is exposed to Python programs as ``dict`` and
``types.DictType``.
type. This is the same object as :class:`dict` in the Python layer.
.. c:function:: int PyDict_Check(PyObject *p)
...
...
Doc/c-api/float.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -15,10 +15,8 @@ Floating Point Objects
.. c:var:: PyTypeObject PyFloat_Type
.. index:: single: FloatType (in modules types)
This instance of :c:type:`PyTypeObject` represents the Python floating point
type. This is the same object as
``float`` and ``types.FloatType``
.
type. This is the same object as
:class:`float` in the Python layer
.
.. c:function:: int PyFloat_Check(PyObject *p)
...
...
Doc/c-api/list.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -15,8 +15,8 @@ List Objects
.. c:var:: PyTypeObject PyList_Type
This instance of :c:type:`PyTypeObject` represents the Python list type.
This
is the same object as ``list`
` in the Python layer.
This instance of :c:type:`PyTypeObject` represents the Python list type.
This is the same object as :class:`list
` in the Python layer.
.. c:function:: int PyList_Check(PyObject *p)
...
...
Doc/c-api/long.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -18,7 +18,7 @@ All integers are implemented as "long" integer objects of arbitrary size.
.. c:var:: PyTypeObject PyLong_Type
This instance of :c:type:`PyTypeObject` represents the Python integer type.
This is the same object as
``int``
.
This is the same object as
:class:`int` in the Python layer
.
.. c:function:: int PyLong_Check(PyObject *p)
...
...
Doc/c-api/slice.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -8,10 +8,8 @@ Slice Objects
.. c:var:: PyTypeObject PySlice_Type
.. index:: single: SliceType (in module types)
The type object for slice objects. This is the same as ``slice`` and
``types.SliceType``.
The type object for slice objects. This is the same as :class:`slice` in the
Python layer.
.. c:function:: int PySlice_Check(PyObject *ob)
...
...
Doc/c-api/tuple.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -15,10 +15,8 @@ Tuple Objects
.. c:var:: PyTypeObject PyTuple_Type
.. index:: single: TupleType (in module types)
This instance of :c:type:`PyTypeObject` represents the Python tuple type; it is
the same object as ``tuple`` and ``types.TupleType`` in the Python layer..
This instance of :c:type:`PyTypeObject` represents the Python tuple type; it
is the same object as :class:`tuple` in the Python layer.
.. c:function:: int PyTuple_Check(PyObject *p)
...
...
Doc/c-api/type.rst
Dosyayı görüntüle @
2aff335c
...
...
@@ -15,10 +15,8 @@ Type Objects
.. c:var:: PyObject* PyType_Type
.. index:: single: TypeType (in module types)
This is the type object for type objects; it is the same object as ``type`` and
``types.TypeType`` in the Python layer.
This is the type object for type objects; it is the same object as
:class:`type` in the Python layer.
.. c:function:: int PyType_Check(PyObject *o)
...
...
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