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
10e35b30
Kaydet (Commit)
10e35b30
authored
Tem 20, 2009
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport of r74103.
üst
5797e8b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
8 deletions
+14
-8
test_abc_loader.py
Lib/importlib/test/source/test_abc_loader.py
+8
-8
NEWS
Misc/NEWS
+6
-0
No files found.
Lib/importlib/test/source/test_abc_loader.py
Dosyayı görüntüle @
10e35b30
...
...
@@ -346,20 +346,20 @@ class BadBytecodeFailureTests(unittest.TestCase):
# A bad magic number should lead to an ImportError.
name
=
'mod'
bad_magic
=
b
'
\x00\x00\x00\x00
'
mock
=
PyPycLoaderMock
({
},
{
name
:
{
'path'
:
os
.
path
.
join
(
'path'
,
'to'
,
'mod'
),
'magic'
:
bad_magic
}})
mock
=
PyPycLoaderMock
({
name
:
None
}
,
{
name
:
{
'path'
:
os
.
path
.
join
(
'path'
,
'to'
,
'mod'
),
'magic'
:
bad_magic
}})
with
util
.
uncache
(
name
):
self
.
assertRaises
(
ImportError
,
mock
.
load_module
,
name
)
def
test_bad_bytecode
(
self
):
# Bad code object bytecode should
el
ad to an ImportError.
# Bad code object bytecode should
le
ad to an ImportError.
name
=
'mod'
mock
=
PyPycLoaderMock
({
},
{
name
:
{
'path'
:
os
.
path
.
join
(
'path'
,
'to'
,
'mod'
),
'bc'
:
b
''
}})
mock
=
PyPycLoaderMock
({
name
:
None
}
,
{
name
:
{
'path'
:
os
.
path
.
join
(
'path'
,
'to'
,
'mod'
),
'bc'
:
b
''
}})
with
util
.
uncache
(
name
):
self
.
assertRaises
(
Import
Error
,
mock
.
load_module
,
name
)
self
.
assertRaises
(
EOF
Error
,
mock
.
load_module
,
name
)
def
raise_ImportError
(
*
args
,
**
kwargs
):
...
...
Misc/NEWS
Dosyayı görüntüle @
10e35b30
...
...
@@ -62,6 +62,12 @@ Build
- Issue 5390: Add uninstall icon independent of whether file
extensions are installed.
Test
----
- Fix a test in importlib.test.source.test_abc_loader that was incorrectly
testing when a .pyc file lacked an code object bytecode.
What's New in Python 3.1?
=========================
...
...
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