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
7023644e
Kaydet (Commit)
7023644e
authored
Mar 04, 2018
tarafından
Thomas Nyberg
Kaydeden (comit)
Benjamin Peterson
Mar 04, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
closes bpo-32980 Remove _PyFrame_Init (GH-5965)
üst
0e6c8ee2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
12 deletions
+0
-12
pylifecycle.h
Include/pylifecycle.h
+0
-1
frameobject.c
Objects/frameobject.c
+0
-8
pylifecycle.c
Python/pylifecycle.c
+0
-3
No files found.
Include/pylifecycle.h
Dosyayı görüntüle @
7023644e
...
...
@@ -148,7 +148,6 @@ PyAPI_FUNC(int) _PySys_EndInit(PyObject *sysdict, _PyMainInterpreterConfig *conf
PyAPI_FUNC
(
_PyInitError
)
_PyImport_Init
(
PyInterpreterState
*
interp
);
PyAPI_FUNC
(
void
)
_PyExc_Init
(
PyObject
*
bltinmod
);
PyAPI_FUNC
(
_PyInitError
)
_PyImportHooks_Init
(
void
);
PyAPI_FUNC
(
int
)
_PyFrame_Init
(
void
);
PyAPI_FUNC
(
int
)
_PyFloat_Init
(
void
);
PyAPI_FUNC
(
int
)
PyByteArray_Init
(
void
);
PyAPI_FUNC
(
_PyInitError
)
_Py_HashRandomization_Init
(
const
_PyCoreConfig
*
);
...
...
Objects/frameobject.c
Dosyayı görüntüle @
7023644e
...
...
@@ -552,14 +552,6 @@ PyTypeObject PyFrame_Type = {
_Py_IDENTIFIER
(
__builtins__
);
int
_PyFrame_Init
()
{
/* Before, PyId___builtins__ was a string created explicitly in
this function. Now there is nothing to initialize anymore, but
the function is kept for backward compatibility. */
return
1
;
}
PyFrameObject
*
_Py_HOT_FUNCTION
_PyFrame_New_NoTrack
(
PyThreadState
*
tstate
,
PyCodeObject
*
code
,
PyObject
*
globals
,
PyObject
*
locals
)
...
...
Python/pylifecycle.c
Dosyayı görüntüle @
7023644e
...
...
@@ -690,9 +690,6 @@ _Py_InitializeCore(const _PyCoreConfig *core_config)
_Py_ReadyTypes
();
if
(
!
_PyFrame_Init
())
return
_Py_INIT_ERR
(
"can't init frames"
);
if
(
!
_PyLong_Init
())
return
_Py_INIT_ERR
(
"can't init longs"
);
...
...
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