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
dc392e31
Kaydet (Commit)
dc392e31
authored
Ock 01, 2003
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move _PyInt_Init() into pythonrun.h, since all the other _Init()
functions are here. Suggested by Skip.
üst
4e8f5492
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
1 deletion
+1
-1
intobject.h
Include/intobject.h
+0
-1
pythonrun.h
Include/pythonrun.h
+1
-0
No files found.
Include/intobject.h
Dosyayı görüntüle @
dc392e31
...
@@ -30,7 +30,6 @@ PyAPI_DATA(PyTypeObject) PyInt_Type;
...
@@ -30,7 +30,6 @@ PyAPI_DATA(PyTypeObject) PyInt_Type;
#define PyInt_Check(op) PyObject_TypeCheck(op, &PyInt_Type)
#define PyInt_Check(op) PyObject_TypeCheck(op, &PyInt_Type)
#define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type)
#define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type)
PyAPI_FUNC
(
int
)
_PyInt_Init
(
void
);
PyAPI_FUNC
(
PyObject
*
)
PyInt_FromString
(
char
*
,
char
**
,
int
);
PyAPI_FUNC
(
PyObject
*
)
PyInt_FromString
(
char
*
,
char
**
,
int
);
#ifdef Py_USING_UNICODE
#ifdef Py_USING_UNICODE
PyAPI_FUNC
(
PyObject
*
)
PyInt_FromUnicode
(
Py_UNICODE
*
,
int
,
int
);
PyAPI_FUNC
(
PyObject
*
)
PyInt_FromUnicode
(
Py_UNICODE
*
,
int
,
int
);
...
...
Include/pythonrun.h
Dosyayı görüntüle @
dc392e31
...
@@ -101,6 +101,7 @@ PyAPI_FUNC(void) _PyImport_Init(void);
...
@@ -101,6 +101,7 @@ PyAPI_FUNC(void) _PyImport_Init(void);
PyAPI_FUNC
(
void
)
_PyExc_Init
(
void
);
PyAPI_FUNC
(
void
)
_PyExc_Init
(
void
);
PyAPI_FUNC
(
void
)
_PyImportHooks_Init
(
void
);
PyAPI_FUNC
(
void
)
_PyImportHooks_Init
(
void
);
PyAPI_FUNC
(
int
)
_PyFrame_Init
(
void
);
PyAPI_FUNC
(
int
)
_PyFrame_Init
(
void
);
PyAPI_FUNC
(
int
)
_PyInt_Init
(
void
);
/* Various internal finalizers */
/* Various internal finalizers */
PyAPI_FUNC
(
void
)
_PyExc_Fini
(
void
);
PyAPI_FUNC
(
void
)
_PyExc_Fini
(
void
);
...
...
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