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
bebe5157
Kaydet (Commit)
bebe5157
authored
Agu 09, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add module binascii; add r_unload/s_unload; don't change 'rb' to 'r' in open
üst
aa763447
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
rexec.py
Lib/rexec.py
+9
-2
No files found.
Lib/rexec.py
Dosyayı görüntüle @
bebe5157
...
...
@@ -112,7 +112,8 @@ class RExec(ihooks._Verbose):
ok_path
=
tuple
(
sys
.
path
)
# That's a policy decision
ok_builtin_modules
=
(
'array'
,
'audioop'
,
'imageop'
,
'marshal'
,
'math'
,
ok_builtin_modules
=
(
'array'
,
'binascii'
,
'audioop'
,
'imageop'
,
'marshal'
,
'math'
,
'md5'
,
'parser'
,
'regex'
,
'rotor'
,
'select'
,
'strop'
,
'struct'
,
'time'
)
...
...
@@ -229,6 +230,9 @@ class RExec(ihooks._Verbose):
def
r_reload
(
self
,
m
):
return
self
.
importer
.
reload
(
m
)
def
r_unload
(
self
,
m
):
return
self
.
importer
.
unload
(
m
)
# The s_* methods are similar but also swap std{in,out,err}
...
...
@@ -274,12 +278,15 @@ class RExec(ihooks._Verbose):
def
s_reload
(
self
,
*
args
):
self
.
s_apply
(
self
.
r_reload
,
args
)
def
s_unload
(
self
,
*
args
):
self
.
s_apply
(
self
.
r_unload
,
args
)
# Restricted open(...)
def
r_open
(
self
,
file
,
mode
=
'r'
,
buf
=-
1
):
if
mode
not
in
(
'r'
,
'rb'
):
raise
IOError
,
"can't open files for writing in restricted mode"
return
open
(
file
,
'r'
,
buf
)
return
open
(
file
,
mode
,
buf
)
def
test
():
...
...
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