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
30147710
Kaydet (Commit)
30147710
authored
Agu 28, 2012
tarafından
Richard Oudkerk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #15784: Modify OSError.__str__() to better distinguish between
errno error numbers and Windows error numbers.
üst
ca2b6468
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
test_exceptions.py
Lib/test/test_exceptions.py
+2
-2
NEWS
Misc/NEWS
+3
-0
exceptions.c
Objects/exceptions.c
+2
-2
No files found.
Lib/test/test_exceptions.py
Dosyayı görüntüle @
30147710
...
...
@@ -216,14 +216,14 @@ class ExceptionTests(unittest.TestCase):
self
.
assertEqual
(
w
.
winerror
,
3
)
self
.
assertEqual
(
w
.
strerror
,
'foo'
)
self
.
assertEqual
(
w
.
filename
,
'bar'
)
self
.
assertEqual
(
str
(
w
),
"[Error 3] foo: 'bar'"
)
self
.
assertEqual
(
str
(
w
),
"[
Win
Error 3] foo: 'bar'"
)
# Unknown win error becomes EINVAL (22)
w
=
OSError
(
0
,
'foo'
,
None
,
1001
)
self
.
assertEqual
(
w
.
errno
,
22
)
self
.
assertEqual
(
w
.
winerror
,
1001
)
self
.
assertEqual
(
w
.
strerror
,
'foo'
)
self
.
assertEqual
(
w
.
filename
,
None
)
self
.
assertEqual
(
str
(
w
),
"[Error 1001] foo"
)
self
.
assertEqual
(
str
(
w
),
"[
Win
Error 1001] foo"
)
# Non-numeric "errno"
w
=
OSError
(
'bar'
,
'foo'
)
self
.
assertEqual
(
w
.
errno
,
'bar'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
30147710
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Release Candidate 2?
Core and Builtins
-----------------
- Issue #15784: Modify OSError.__str__() to better distinguish between
errno error numbers and Windows error numbers.
Library
-------
...
...
Objects/exceptions.c
Dosyayı görüntüle @
30147710
...
...
@@ -1016,12 +1016,12 @@ OSError_str(PyOSErrorObject *self)
#ifdef MS_WINDOWS
/* If available, winerror has the priority over myerrno */
if
(
self
->
winerror
&&
self
->
filename
)
return
PyUnicode_FromFormat
(
"[Error %S] %S: %R"
,
return
PyUnicode_FromFormat
(
"[
Win
Error %S] %S: %R"
,
self
->
winerror
?
self
->
winerror
:
Py_None
,
self
->
strerror
?
self
->
strerror
:
Py_None
,
self
->
filename
);
if
(
self
->
winerror
&&
self
->
strerror
)
return
PyUnicode_FromFormat
(
"[Error %S] %S"
,
return
PyUnicode_FromFormat
(
"[
Win
Error %S] %S"
,
self
->
winerror
?
self
->
winerror
:
Py_None
,
self
->
strerror
?
self
->
strerror
:
Py_None
);
#endif
...
...
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