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
65c15354
Kaydet (Commit)
65c15354
authored
Tem 04, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12467: warnings: fix a race condition if a warning is emitted at
shutdown, if globals()['__file__'] is None.
üst
13502b19
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
test_warnings.py
Lib/test/test_warnings.py
+12
-0
NEWS
Misc/NEWS
+3
-0
_warnings.c
Python/_warnings.c
+1
-1
No files found.
Lib/test/test_warnings.py
Dosyayı görüntüle @
65c15354
...
...
@@ -530,6 +530,18 @@ class _WarningsTests(BaseTest):
assert
expected_line
self
.
assertEqual
(
second_line
,
expected_line
)
def
test_filename_none
(
self
):
# issue #12467: race condition if a warning is emitted at shutdown
globals_dict
=
globals
()
oldfile
=
globals_dict
[
'__file__'
]
try
:
with
original_warnings
.
catch_warnings
(
module
=
self
.
module
)
as
w
:
self
.
module
.
filterwarnings
(
"always"
,
category
=
UserWarning
)
globals_dict
[
'__file__'
]
=
None
self
.
module
.
warn
(
'test'
,
UserWarning
)
finally
:
globals_dict
[
'__file__'
]
=
oldfile
class
WarningsDisplayTests
(
unittest
.
TestCase
):
...
...
Misc/NEWS
Dosyayı görüntüle @
65c15354
...
...
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
- Issue #12467: warnings: fix a race condition if a warning is emitted at
shutdown, if globals()['
__file__
'] is None.
- Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by
the garbage collector while the Heap lock is held.
...
...
Python/_warnings.c
Dosyayı görüntüle @
65c15354
...
...
@@ -491,7 +491,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
/* Setup filename. */
*
filename
=
PyDict_GetItemString
(
globals
,
"__file__"
);
if
(
*
filename
!=
NULL
)
{
if
(
*
filename
!=
NULL
&&
PyString_Check
(
*
filename
)
)
{
Py_ssize_t
len
=
PyString_Size
(
*
filename
);
const
char
*
file_str
=
PyString_AsString
(
*
filename
);
if
(
file_str
==
NULL
||
(
len
<
0
&&
PyErr_Occurred
()))
...
...
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