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
056bafe7
Kaydet (Commit)
056bafe7
authored
Agu 10, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#18681: Fix a NameError in imp.reload() (noticed by Weizhao Li).
üst
a9e67ad9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
imp.py
Lib/imp.py
+1
-1
test_imp.py
Lib/test/test_imp.py
+9
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/imp.py
Dosyayı görüntüle @
056bafe7
...
...
@@ -267,7 +267,7 @@ def reload(module):
parent_name
=
name
.
rpartition
(
'.'
)[
0
]
if
parent_name
and
parent_name
not
in
sys
.
modules
:
msg
=
"parent {!r} not in sys.modules"
raise
ImportError
(
msg
.
format
(
parentname
),
name
=
parent_name
)
raise
ImportError
(
msg
.
format
(
parent
_
name
),
name
=
parent_name
)
return
module
.
__loader__
.
load_module
(
name
)
finally
:
try
:
...
...
Lib/test/test_imp.py
Dosyayı görüntüle @
056bafe7
...
...
@@ -275,6 +275,15 @@ class ReloadTests(unittest.TestCase):
import
marshal
imp
.
reload
(
marshal
)
def
test_with_deleted_parent
(
self
):
# see #18681
from
html
import
parser
del
sys
.
modules
[
'html'
]
def
cleanup
():
del
sys
.
modules
[
'html.parser'
]
self
.
addCleanup
(
cleanup
)
with
self
.
assertRaisesRegex
(
ImportError
,
'html'
):
imp
.
reload
(
parser
)
class
PEP3147Tests
(
unittest
.
TestCase
):
"""Tests of PEP 3147."""
...
...
Misc/NEWS
Dosyayı görüntüle @
056bafe7
...
...
@@ -64,6 +64,8 @@ Core and Builtins
Library
-------
- Issue #18681: Fix a NameError in imp.reload() (noticed by Weizhao Li).
- Issue #8112: xlmrpc.server'
s
DocXMLRPCServer
server
no
longer
raises
an
error
if
methods
have
annotations
;
it
now
correctly
displays
the
annotations
.
...
...
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