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
c16fcdf5
Kaydet (Commit)
c16fcdf5
authored
Agu 29, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make the PyXXX_Check() macros for the numeric types inheritance-aware.
üst
c51395d7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
complexobject.h
Include/complexobject.h
+1
-1
floatobject.h
Include/floatobject.h
+1
-1
intobject.h
Include/intobject.h
+1
-1
longobject.h
Include/longobject.h
+1
-1
No files found.
Include/complexobject.h
Dosyayı görüntüle @
c16fcdf5
...
...
@@ -42,7 +42,7 @@ typedef struct {
extern
DL_IMPORT
(
PyTypeObject
)
PyComplex_Type
;
#define PyComplex_Check(op)
((op)->ob_type ==
&PyComplex_Type)
#define PyComplex_Check(op)
PyObject_TypeCheck(op,
&PyComplex_Type)
extern
DL_IMPORT
(
PyObject
*
)
PyComplex_FromCComplex
(
Py_complex
);
extern
DL_IMPORT
(
PyObject
*
)
PyComplex_FromDoubles
(
double
real
,
double
imag
);
...
...
Include/floatobject.h
Dosyayı görüntüle @
c16fcdf5
...
...
@@ -18,7 +18,7 @@ typedef struct {
extern
DL_IMPORT
(
PyTypeObject
)
PyFloat_Type
;
#define PyFloat_Check(op)
((op)->ob_type ==
&PyFloat_Type)
#define PyFloat_Check(op)
PyObject_TypeCheck(op,
&PyFloat_Type)
/* Return Python float from string PyObject. Second argument ignored on
input, and, if non-NULL, NULL is stored into *junk (this tried to serve a
...
...
Include/intobject.h
Dosyayı görüntüle @
c16fcdf5
...
...
@@ -27,7 +27,7 @@ typedef struct {
extern
DL_IMPORT
(
PyTypeObject
)
PyInt_Type
;
#define PyInt_Check(op)
((op)->ob_type ==
&PyInt_Type)
#define PyInt_Check(op)
PyObject_TypeCheck(op,
&PyInt_Type)
extern
DL_IMPORT
(
PyObject
*
)
PyInt_FromString
(
char
*
,
char
**
,
int
);
#ifdef Py_USING_UNICODE
...
...
Include/longobject.h
Dosyayı görüntüle @
c16fcdf5
...
...
@@ -11,7 +11,7 @@ typedef struct _longobject PyLongObject; /* Revealed in longintrepr.h */
extern
DL_IMPORT
(
PyTypeObject
)
PyLong_Type
;
#define PyLong_Check(op)
((op)->ob_type ==
&PyLong_Type)
#define PyLong_Check(op)
PyObject_TypeCheck(op,
&PyLong_Type)
extern
DL_IMPORT
(
PyObject
*
)
PyLong_FromLong
(
long
);
extern
DL_IMPORT
(
PyObject
*
)
PyLong_FromUnsignedLong
(
unsigned
long
);
...
...
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