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
39c0721d
Kaydet (Commit)
39c0721d
authored
Nis 02, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.4 (test_exceptions)
üst
acd8e7c1
d223fa63
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
test_exceptions.py
Lib/test/test_exceptions.py
+8
-5
No files found.
Lib/test/test_exceptions.py
Dosyayı görüntüle @
39c0721d
...
...
@@ -10,7 +10,7 @@ import ctypes
from
test.support
import
(
TESTFN
,
captured_output
,
check_impl_detail
,
check_warnings
,
cpython_only
,
gc_collect
,
run_unittest
,
no_tracing
,
unlink
,
get_attribut
e
)
no_tracing
,
unlink
,
import_modul
e
)
class
NaiveException
(
Exception
):
def
__init__
(
self
,
x
):
...
...
@@ -246,12 +246,15 @@ class ExceptionTests(unittest.TestCase):
self
.
assertEqual
(
w
.
strerror
,
'foo'
)
self
.
assertEqual
(
w
.
filename
,
None
)
@unittest.skipUnless
(
sys
.
platform
==
'win32'
,
'test specific to Windows'
)
def
test_windows_message
(
self
):
"""Should fill in unknown error code in Windows error message"""
windll
=
get_attribute
(
ctypes
,
"windll"
)
code
=
int
.
from_bytes
(
b
"
\xE0
msc"
,
"big"
)
with
self
.
assertRaisesRegex
(
OSError
,
hex
(
code
)):
windll
.
kernel32
.
RaiseException
(
code
,
0
,
0
,
None
)
ctypes
=
import_module
(
'ctypes'
)
# this error code has no message, Python formats it as hexadecimal
code
=
3765269347
with
self
.
assertRaisesRegex
(
OSError
,
'Windows Error 0x
%
x'
%
code
):
ctypes
.
pythonapi
.
PyErr_SetFromWindowsErr
(
code
)
def
testAttributes
(
self
):
# test that exception attributes are happy
...
...
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