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
6961bd69
Kaydet (Commit)
6961bd69
authored
Agu 17, 2010
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx().
üst
6009ece0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
NEWS
Misc/NEWS
+2
-0
pythonrun.c
Python/pythonrun.c
+5
-5
No files found.
Misc/NEWS
Dosyayı görüntüle @
6961bd69
...
...
@@ -12,6 +12,8 @@ What's New in Python 3.2 Alpha 2?
Core and Builtins
-----------------
- Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx().
- Issue #9612: The set object is now 64-bit clean under Windows.
- Issue #8202: sys.argv[0] is now set to '-m' instead of '-c' when searching
...
...
Python/pythonrun.c
Dosyayı görüntüle @
6961bd69
...
...
@@ -206,6 +206,11 @@ Py_InitializeEx(int install_sigs)
Py_FatalError
(
"Py_Initialize: can't make first thread"
);
(
void
)
PyThreadState_Swap
(
tstate
);
/* auto-thread-state API, if available */
#ifdef WITH_THREAD
_PyGILState_Init
(
interp
,
tstate
);
#endif
/* WITH_THREAD */
_Py_ReadyTypes
();
if
(
!
_PyFrame_Init
())
...
...
@@ -288,11 +293,6 @@ Py_InitializeEx(int install_sigs)
Py_FatalError
(
"Py_Initialize: can't initialize sys standard streams"
);
/* auto-thread-state API, if available */
#ifdef WITH_THREAD
_PyGILState_Init
(
interp
,
tstate
);
#endif
/* WITH_THREAD */
if
(
!
Py_NoSiteFlag
)
initsite
();
/* Module site */
}
...
...
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