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
15aa4c88
Kaydet (Commit)
15aa4c88
authored
Mar 03, 2017
tarafından
Anish Shah
Kaydeden (comit)
Serhiy Storchaka
Mar 03, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29693: Fix for DeprecationWarning in test_import (#421)
Patch by Anish Shah.
üst
902e9c50
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
__init__.py
Lib/test/test_import/__init__.py
+2
-2
No files found.
Lib/test/test_import/__init__.py
Dosyayı görüntüle @
15aa4c88
...
...
@@ -85,7 +85,7 @@ class ImportTests(unittest.TestCase):
from
os
import
i_dont_exist
self
.
assertEqual
(
cm
.
exception
.
name
,
'os'
)
self
.
assertEqual
(
cm
.
exception
.
path
,
os
.
__file__
)
self
.
assertRegex
(
str
(
cm
.
exception
),
"cannot import name 'i_dont_exist' from 'os'
\
(.*os.py
\
)"
)
self
.
assertRegex
(
str
(
cm
.
exception
),
r
"cannot import name 'i_dont_exist' from 'os' \(.*os.py\)"
)
def
test_from_import_missing_attr_has_name_and_so_path
(
self
):
import
select
...
...
@@ -93,7 +93,7 @@ class ImportTests(unittest.TestCase):
from
select
import
i_dont_exist
self
.
assertEqual
(
cm
.
exception
.
name
,
'select'
)
self
.
assertEqual
(
cm
.
exception
.
path
,
select
.
__file__
)
self
.
assertRegex
(
str
(
cm
.
exception
),
"cannot import name 'i_dont_exist' from 'select'
\
(.*
\
.(so|pyd)
\
)"
)
self
.
assertRegex
(
str
(
cm
.
exception
),
r
"cannot import name 'i_dont_exist' from 'select' \(.*\.(so|pyd)\)"
)
def
test_from_import_missing_attr_has_name
(
self
):
with
self
.
assertRaises
(
ImportError
)
as
cm
:
...
...
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