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
00b65908
Kaydet (Commit)
00b65908
authored
Nis 01, 2009
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Revert accidental checkin.
üst
5942b917
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
pdb.py
Lib/pdb.py
+0
-6
No files found.
Lib/pdb.py
Dosyayı görüntüle @
00b65908
...
@@ -194,9 +194,6 @@ class Pdb(bdb.Bdb, cmd.Cmd):
...
@@ -194,9 +194,6 @@ class Pdb(bdb.Bdb, cmd.Cmd):
self
.
cmdloop
()
self
.
cmdloop
()
self
.
forget
()
self
.
forget
()
def
displayhook
(
self
,
item
):
print
item
def
default
(
self
,
line
):
def
default
(
self
,
line
):
if
line
[:
1
]
==
'!'
:
line
=
line
[
1
:]
if
line
[:
1
]
==
'!'
:
line
=
line
[
1
:]
locals
=
self
.
curframe
.
f_locals
locals
=
self
.
curframe
.
f_locals
...
@@ -205,16 +202,13 @@ class Pdb(bdb.Bdb, cmd.Cmd):
...
@@ -205,16 +202,13 @@ class Pdb(bdb.Bdb, cmd.Cmd):
code
=
compile
(
line
+
'
\n
'
,
'<stdin>'
,
'single'
)
code
=
compile
(
line
+
'
\n
'
,
'<stdin>'
,
'single'
)
save_stdout
=
sys
.
stdout
save_stdout
=
sys
.
stdout
save_stdin
=
sys
.
stdin
save_stdin
=
sys
.
stdin
save_displayhook
=
sys
.
displayhook
try
:
try
:
sys
.
stdin
=
self
.
stdin
sys
.
stdin
=
self
.
stdin
sys
.
stdout
=
self
.
stdout
sys
.
stdout
=
self
.
stdout
sys
.
displayhook
=
self
.
displayhook
exec
code
in
globals
,
locals
exec
code
in
globals
,
locals
finally
:
finally
:
sys
.
stdout
=
save_stdout
sys
.
stdout
=
save_stdout
sys
.
stdin
=
save_stdin
sys
.
stdin
=
save_stdin
sys
.
displayhook
=
save_displayhook
except
:
except
:
t
,
v
=
sys
.
exc_info
()[:
2
]
t
,
v
=
sys
.
exc_info
()[:
2
]
if
type
(
t
)
==
type
(
''
):
if
type
(
t
)
==
type
(
''
):
...
...
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