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
f07e2b64
Kaydet (Commit)
f07e2b64
authored
Eki 08, 2017
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Eki 08, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3834)
üst
73ffd3f2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
1 deletion
+18
-1
_bootstrap.py
Lib/importlib/_bootstrap.py
+2
-1
test_api.py
Lib/test/test_importlib/import_/test_api.py
+14
-0
2017-10-08-10-00-55.bpo-31642.1IKqgs.rst
...ore and Builtins/2017-10-08-10-00-55.bpo-31642.1IKqgs.rst
+2
-0
importlib.h
Python/importlib.h
+0
-0
No files found.
Lib/importlib/_bootstrap.py
Dosyayı görüntüle @
f07e2b64
...
...
@@ -1019,7 +1019,8 @@ def _handle_fromlist(module, fromlist, import_):
# Backwards-compatibility dictates we ignore failed
# imports triggered by fromlist for modules that don't
# exist.
if
exc
.
name
==
from_name
:
if
(
exc
.
name
==
from_name
and
sys
.
modules
.
get
(
from_name
,
_NEEDS_LOADING
)
is
not
None
):
continue
raise
return
module
...
...
Lib/test/test_importlib/import_/test_api.py
Dosyayı görüntüle @
f07e2b64
...
...
@@ -82,6 +82,20 @@ class APITest:
self
.
__import__
(
PKG_NAME
,
fromlist
=
[
SUBMOD_NAME
.
rpartition
(
'.'
)[
-
1
]])
def
test_blocked_fromlist
(
self
):
# If fromlist entry is None, let a ModuleNotFoundError propagate.
# issue31642
mod
=
types
.
ModuleType
(
PKG_NAME
)
mod
.
__path__
=
[]
with
util
.
import_state
(
meta_path
=
[
self
.
bad_finder_loader
]):
with
util
.
uncache
(
PKG_NAME
,
SUBMOD_NAME
):
sys
.
modules
[
PKG_NAME
]
=
mod
sys
.
modules
[
SUBMOD_NAME
]
=
None
with
self
.
assertRaises
(
ModuleNotFoundError
)
as
cm
:
self
.
__import__
(
PKG_NAME
,
fromlist
=
[
SUBMOD_NAME
.
rpartition
(
'.'
)[
-
1
]])
self
.
assertEqual
(
cm
.
exception
.
name
,
SUBMOD_NAME
)
class
OldAPITests
(
APITest
):
bad_finder_loader
=
BadLoaderFinder
...
...
Misc/NEWS.d/next/Core and Builtins/2017-10-08-10-00-55.bpo-31642.1IKqgs.rst
0 → 100644
Dosyayı görüntüle @
f07e2b64
Restored blocking "from package import module" by setting
sys.modules["package.module"] to None.
Python/importlib.h
Dosyayı görüntüle @
f07e2b64
This diff is collapsed.
Click to expand it.
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