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
034c2a9f
Kaydet (Commit)
034c2a9f
authored
Eki 05, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add support for "import re" -- it uses pre, but user code does not need
to.
üst
410cb6be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
rexec.py
Lib/rexec.py
+10
-0
No files found.
Lib/rexec.py
Dosyayı görüntüle @
034c2a9f
...
...
@@ -153,6 +153,9 @@ class RExec(ihooks._Verbose):
self
.
make_sys
()
self
.
loader
=
RModuleLoader
(
self
.
hooks
,
verbose
)
self
.
importer
=
RModuleImporter
(
self
.
loader
,
verbose
)
# but since re isn't normally built-in, we can add it at the end;
# we need the imported to be set before this can be imported.
self
.
make_re
()
def
set_trusted_path
(
self
):
# Set the path from which dynamic modules may be loaded.
...
...
@@ -198,6 +201,13 @@ class RExec(ihooks._Verbose):
for
key
,
value
in
os
.
environ
.
items
():
e
[
key
]
=
value
def
make_re
(
self
):
dst
=
self
.
add_module
(
"re"
)
src
=
self
.
r_import
(
"pre"
)
for
name
in
dir
(
src
):
if
name
!=
"__name__"
:
setattr
(
dst
,
name
,
getattr
(
src
,
name
))
def
make_sys
(
self
):
m
=
self
.
copy_only
(
sys
,
self
.
ok_sys_names
)
m
.
modules
=
self
.
modules
...
...
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