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
a4975a91
Kaydet (Commit)
a4975a91
authored
Agu 23, 2013
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18755: Allow imp.load_*() loaders to have get_data() called
multiple times.
üst
f5ebd264
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
imp.py
Lib/imp.py
+7
-2
test_imp.py
Lib/test/test_imp.py
+7
-0
No files found.
Lib/imp.py
Dosyayı görüntüle @
a4975a91
...
...
@@ -90,13 +90,18 @@ class _HackedGetData:
def
get_data
(
self
,
path
):
"""Gross hack to contort loader to deal w/ load_*()'s bad API."""
if
self
.
file
and
path
==
self
.
path
:
with
self
.
file
:
if
not
self
.
file
.
closed
:
file
=
self
.
file
else
:
self
.
file
=
file
=
open
(
self
.
path
,
'r'
)
with
file
:
# Technically should be returning bytes, but
# SourceLoader.get_code() just passed what is returned to
# compile() which can handle str. And converting to bytes would
# require figuring out the encoding to decode to and
# tokenize.detect_encoding() only accepts bytes.
return
self
.
file
.
read
()
return
file
.
read
()
else
:
return
super
()
.
get_data
(
path
)
...
...
Lib/test/test_imp.py
Dosyayı görüntüle @
a4975a91
...
...
@@ -248,6 +248,13 @@ class ImportTests(unittest.TestCase):
return
imp
.
load_module
(
name
,
None
,
*
found
[
1
:])
def
test_multiple_calls_to_get_data
(
self
):
# Issue #18755: make sure multiple calls to get_data() can succeed.
loader
=
imp
.
_LoadSourceCompatibility
(
'imp'
,
imp
.
__file__
,
open
(
imp
.
__file__
))
loader
.
get_data
(
imp
.
__file__
)
# File should be closed
loader
.
get_data
(
imp
.
__file__
)
# Will need to create a newly opened file
class
ReloadTests
(
unittest
.
TestCase
):
...
...
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