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
e9e44484
Kaydet (Commit)
e9e44484
authored
Eyl 28, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28289: ImportError.__init__ now resets not specified attributes.
üst
2e8c939e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
9 deletions
+23
-9
test_exceptions.py
Lib/test/test_exceptions.py
+14
-0
NEWS
Misc/NEWS
+2
-0
exceptions.c
Objects/exceptions.c
+7
-9
No files found.
Lib/test/test_exceptions.py
Dosyayı görüntüle @
e9e44484
...
...
@@ -1112,6 +1112,20 @@ class ImportErrorTests(unittest.TestCase):
with
self
.
assertRaisesRegex
(
TypeError
,
msg
):
ImportError
(
'test'
,
invalid
=
'keyword'
,
another
=
True
)
def
test_reset_attributes
(
self
):
exc
=
ImportError
(
'test'
,
name
=
'name'
,
path
=
'path'
)
self
.
assertEqual
(
exc
.
args
,
(
'test'
,))
self
.
assertEqual
(
exc
.
msg
,
'test'
)
self
.
assertEqual
(
exc
.
name
,
'name'
)
self
.
assertEqual
(
exc
.
path
,
'path'
)
# Reset not specified attributes
exc
.
__init__
()
self
.
assertEqual
(
exc
.
args
,
())
self
.
assertEqual
(
exc
.
msg
,
None
)
self
.
assertEqual
(
exc
.
name
,
None
)
self
.
assertEqual
(
exc
.
path
,
None
)
def
test_non_str_argument
(
self
):
# Issue #15778
with
check_warnings
((
''
,
BytesWarning
),
quiet
=
True
):
...
...
Misc/NEWS
Dosyayı görüntüle @
e9e44484
...
...
@@ -10,6 +10,8 @@ What's New in Python 3.7.0 alpha 1
Core and Builtins
-----------------
- Issue #28289: ImportError.__init__ now resets not specified attributes.
- Issue #21578: Fixed misleading error message when ImportError called with
invalid keyword args.
...
...
Objects/exceptions.c
Dosyayı görüntüle @
e9e44484
...
...
@@ -631,19 +631,17 @@ ImportError_init(PyImportErrorObject *self, PyObject *args, PyObject *kwds)
}
Py_DECREF
(
empty_tuple
);
if
(
name
)
{
Py_INCREF
(
name
);
Py_XSETREF
(
self
->
name
,
name
);
}
if
(
path
)
{
Py_INCREF
(
path
);
Py_XSETREF
(
self
->
path
,
path
);
}
Py_XINCREF
(
name
);
Py_XSETREF
(
self
->
name
,
name
);
Py_XINCREF
(
path
);
Py_XSETREF
(
self
->
path
,
path
);
if
(
PyTuple_GET_SIZE
(
args
)
==
1
)
{
msg
=
PyTuple_GET_ITEM
(
args
,
0
);
Py_INCREF
(
msg
);
Py_XSETREF
(
self
->
msg
,
msg
);
}
Py_XSETREF
(
self
->
msg
,
msg
);
return
0
;
}
...
...
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