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
a43fd0c8
Kaydet (Commit)
a43fd0c8
authored
Şub 19, 2003
tarafından
Mark Hammond
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix bug 683658 - PyErr_Warn may cause import deadlock.
üst
4ccf3e14
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
6 deletions
+19
-6
warnings.py
Lib/warnings.py
+4
-1
errors.c
Python/errors.c
+4
-5
pythonrun.c
Python/pythonrun.c
+11
-0
No files found.
Lib/warnings.py
Dosyayı görüntüle @
a43fd0c8
"""Python part of the warnings subsystem."""
# Note: function level imports should *not* be used
# in this module as it may cause import lock deadlock.
# See bug 683658.
import
sys
,
re
,
types
import
linecache
__all__
=
[
"warn"
,
"showwarning"
,
"formatwarning"
,
"filterwarnings"
,
"resetwarnings"
]
...
...
@@ -114,7 +118,6 @@ def showwarning(message, category, filename, lineno, file=None):
def
formatwarning
(
message
,
category
,
filename
,
lineno
):
"""Function to format a warning the standard way."""
import
linecache
s
=
"
%
s:
%
s:
%
s:
%
s
\n
"
%
(
filename
,
lineno
,
category
.
__name__
,
message
)
line
=
linecache
.
getline
(
filename
,
lineno
)
.
strip
()
if
line
:
...
...
Python/errors.c
Dosyayı görüntüle @
a43fd0c8
...
...
@@ -600,18 +600,17 @@ PyErr_WriteUnraisable(PyObject *obj)
Py_XDECREF
(
tb
);
}
extern
PyObject
*
PyModule_WarningsModule
;
/* Function to issue a warning message; may raise an exception. */
int
PyErr_Warn
(
PyObject
*
category
,
char
*
message
)
{
PyObject
*
mod
,
*
dict
,
*
func
=
NULL
;
PyObject
*
dict
,
*
func
=
NULL
;
mod
=
PyImport_ImportModule
(
"warnings"
);
if
(
mod
!=
NULL
)
{
dict
=
PyModule_GetDict
(
mod
);
if
(
PyModule_WarningsModule
!=
NULL
)
{
dict
=
PyModule_GetDict
(
PyModule_WarningsModule
);
func
=
PyDict_GetItemString
(
dict
,
"warn"
);
Py_DECREF
(
mod
);
}
if
(
func
==
NULL
)
{
PySys_WriteStderr
(
"warning: %s
\n
"
,
message
);
...
...
Python/pythonrun.c
Dosyayı görüntüle @
a43fd0c8
...
...
@@ -60,6 +60,11 @@ int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */
true divisions (which they will be in 2.3). */
int
_Py_QnewFlag
=
0
;
/* Reference to 'warnings' module, to avoid importing it
on the fly when the import lock may be held. See 683658
*/
PyObject
*
PyModule_WarningsModule
=
NULL
;
static
int
initialized
=
0
;
/* API to access the initialized flag -- useful for esoteric use */
...
...
@@ -169,6 +174,8 @@ Py_Initialize(void)
_PyImportHooks_Init
();
PyModule_WarningsModule
=
PyImport_ImportModule
(
"warnings"
);
initsigs
();
/* Signal handling stuff, including initintr() */
initmain
();
/* Module __main__ */
...
...
@@ -225,6 +232,10 @@ Py_Finalize(void)
/* Cleanup Codec registry */
_PyCodecRegistry_Fini
();
/* drop module references we saved */
Py_XDECREF
(
PyModule_WarningsModule
);
PyModule_WarningsModule
=
NULL
;
/* Destroy all modules */
PyImport_Cleanup
();
...
...
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