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
d90ae19b
Kaydet (Commit)
d90ae19b
authored
Eki 19, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Rename 'locals' argument to top-level interact() function to 'local'
for b/w compatibility with 1.5.1.
üst
649e8c1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
code.py
Lib/code.py
+3
-3
No files found.
Lib/code.py
Dosyayı görüntüle @
d90ae19b
...
...
@@ -340,7 +340,7 @@ class InteractiveConsole(InteractiveInterpreter):
return
raw_input
(
prompt
)
def
interact
(
banner
=
None
,
readfunc
=
None
,
local
s
=
None
):
def
interact
(
banner
=
None
,
readfunc
=
None
,
local
=
None
):
"""Closely emulate the interactive Python interpreter.
This is a backwards compatible interface to the InteractiveConsole
...
...
@@ -351,10 +351,10 @@ def interact(banner=None, readfunc=None, locals=None):
banner -- passed to InteractiveConsole.interact()
readfunc -- if not None, replaces InteractiveConsole.raw_input()
local
s
-- passed to InteractiveInterpreter.__init__()
local -- passed to InteractiveInterpreter.__init__()
"""
console
=
InteractiveConsole
(
local
s
)
console
=
InteractiveConsole
(
local
)
if
readfunc
is
not
None
:
console
.
raw_input
=
readfunc
else
:
...
...
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