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
4d381b17
Kaydet (Commit)
4d381b17
authored
Mar 29, 2005
tarafından
Anthony Baxter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move exception finalisation later in the shutdown process - this
fixes the crash seen in bug #1165761
üst
df078433
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
7 deletions
+19
-7
NEWS
Misc/NEWS
+11
-0
pythonrun.c
Python/pythonrun.c
+8
-7
No files found.
Misc/NEWS
Dosyayı görüntüle @
4d381b17
...
@@ -4,6 +4,17 @@ Python News
...
@@ -4,6 +4,17 @@ Python News
(
editors
:
check
NEWS
.
help
for
information
about
editing
NEWS
using
ReST
.)
(
editors
:
check
NEWS
.
help
for
information
about
editing
NEWS
using
ReST
.)
What
's New in Python 2.4.1 final?
=================================
*Release date: 30-MAR-2005*
Core and builtins
-----------------
- Move exception finalisation later in the shutdown process - this
fixes the crash seen in bug #1165761
What'
s
New
in
Python
2.4.1
c2
?
What'
s
New
in
Python
2.4.1
c2
?
=============================
=============================
...
...
Python/pythonrun.c
Dosyayı görüntüle @
4d381b17
...
@@ -392,13 +392,6 @@ Py_Finalize(void)
...
@@ -392,13 +392,6 @@ Py_Finalize(void)
_Py_PrintReferences
(
stderr
);
_Py_PrintReferences
(
stderr
);
#endif
/* Py_TRACE_REFS */
#endif
/* Py_TRACE_REFS */
/* Now we decref the exception classes. After this point nothing
can raise an exception. That's okay, because each Fini() method
below has been checked to make sure no exceptions are ever
raised.
*/
_PyExc_Fini
();
/* Cleanup auto-thread-state */
/* Cleanup auto-thread-state */
#ifdef WITH_THREAD
#ifdef WITH_THREAD
_PyGILState_Fini
();
_PyGILState_Fini
();
...
@@ -407,6 +400,14 @@ Py_Finalize(void)
...
@@ -407,6 +400,14 @@ Py_Finalize(void)
/* Clear interpreter state */
/* Clear interpreter state */
PyInterpreterState_Clear
(
interp
);
PyInterpreterState_Clear
(
interp
);
/* Now we decref the exception classes. After this point nothing
can raise an exception. That's okay, because each Fini() method
below has been checked to make sure no exceptions are ever
raised.
*/
_PyExc_Fini
();
/* Delete current thread */
/* Delete current thread */
PyThreadState_Swap
(
NULL
);
PyThreadState_Swap
(
NULL
);
PyInterpreterState_Delete
(
interp
);
PyInterpreterState_Delete
(
interp
);
...
...
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