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
91fb0afe
Kaydet (Commit)
91fb0afe
authored
Eyl 24, 2017
tarafından
Oren Milman
Kaydeden (comit)
Serhiy Storchaka
Eyl 24, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-31285: Fix an assertion failure and a SystemError in warnings.warn_explicit. (#3219)
üst
8337239d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
3 deletions
+40
-3
__init__.py
Lib/test/test_warnings/__init__.py
+36
-0
2017-08-27-21-18-30.bpo-31285.7lzaKV.rst
...ore and Builtins/2017-08-27-21-18-30.bpo-31285.7lzaKV.rst
+3
-0
_warnings.c
Python/_warnings.c
+1
-3
No files found.
Lib/test/test_warnings/__init__.py
Dosyayı görüntüle @
91fb0afe
...
...
@@ -794,6 +794,42 @@ class _WarningsTests(BaseTest, unittest.TestCase):
self
.
assertNotIn
(
b
'Warning!'
,
stderr
)
self
.
assertNotIn
(
b
'Error'
,
stderr
)
def
test_issue31285
(
self
):
# warn_explicit() should neither raise a SystemError nor cause an
# assertion failure, in case the return value of get_source() has a
# bad splitlines() method.
def
get_bad_loader
(
splitlines_ret_val
):
class
BadLoader
:
def
get_source
(
self
,
fullname
):
class
BadSource
(
str
):
def
splitlines
(
self
):
return
splitlines_ret_val
return
BadSource
(
'spam'
)
return
BadLoader
()
wmod
=
self
.
module
with
original_warnings
.
catch_warnings
(
module
=
wmod
):
wmod
.
filterwarnings
(
'default'
,
category
=
UserWarning
)
with
support
.
captured_stderr
()
as
stderr
:
wmod
.
warn_explicit
(
'foo'
,
UserWarning
,
'bar'
,
1
,
module_globals
=
{
'__loader__'
:
get_bad_loader
(
42
),
'__name__'
:
'foobar'
})
self
.
assertIn
(
'UserWarning: foo'
,
stderr
.
getvalue
())
show
=
wmod
.
_showwarnmsg
try
:
del
wmod
.
_showwarnmsg
with
support
.
captured_stderr
()
as
stderr
:
wmod
.
warn_explicit
(
'eggs'
,
UserWarning
,
'bar'
,
1
,
module_globals
=
{
'__loader__'
:
get_bad_loader
([
42
]),
'__name__'
:
'foobar'
})
self
.
assertIn
(
'UserWarning: eggs'
,
stderr
.
getvalue
())
finally
:
wmod
.
_showwarnmsg
=
show
@support.cpython_only
def
test_issue31411
(
self
):
# warn_explicit() shouldn't raise a SystemError in case
...
...
Misc/NEWS.d/next/Core and Builtins/2017-08-27-21-18-30.bpo-31285.7lzaKV.rst
0 → 100644
Dosyayı görüntüle @
91fb0afe
Fix an assertion failure in `warnings.warn_explicit`, when the return value
of the received loader's get_source() has a bad splitlines() method. Patch
by Oren Milman.
Python/_warnings.c
Dosyayı görüntüle @
91fb0afe
...
...
@@ -893,9 +893,7 @@ warnings_warn_explicit(PyObject *self, PyObject *args, PyObject *kwds)
}
/* Split the source into lines. */
source_list
=
PyObject_CallMethodObjArgs
(
source
,
PyId_splitlines
.
object
,
NULL
);
source_list
=
PyUnicode_Splitlines
(
source
,
0
);
Py_DECREF
(
source
);
if
(
!
source_list
)
return
NULL
;
...
...
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