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
5815220a
Kaydet (Commit)
5815220a
authored
May 05, 2009
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix overlong lines.
üst
4d4313d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
17 deletions
+27
-17
pdb.py
Lib/pdb.py
+27
-17
No files found.
Lib/pdb.py
Dosyayı görüntüle @
5815220a
...
@@ -158,10 +158,14 @@ class Pdb(bdb.Bdb, cmd.Cmd):
...
@@ -158,10 +158,14 @@ class Pdb(bdb.Bdb, cmd.Cmd):
self
.
interaction
(
frame
,
None
)
self
.
interaction
(
frame
,
None
)
def
bp_commands
(
self
,
frame
):
def
bp_commands
(
self
,
frame
):
""" Call every command that was set for the current active breakpoint (if there is one)
"""Call every command that was set for the current active breakpoint
Returns True if the normal interaction function must be called, False otherwise """
(if there is one).
#self.currentbp is set in bdb.py in bdb.break_here if a breakpoint was hit
if
getattr
(
self
,
"currentbp"
,
False
)
and
self
.
currentbp
in
self
.
commands
:
Returns True if the normal interaction function must be called,
False otherwise."""
# self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
if
getattr
(
self
,
"currentbp"
,
False
)
and
\
self
.
currentbp
in
self
.
commands
:
currentbp
=
self
.
currentbp
currentbp
=
self
.
currentbp
self
.
currentbp
=
0
self
.
currentbp
=
0
lastcmd_back
=
self
.
lastcmd
lastcmd_back
=
self
.
lastcmd
...
@@ -289,7 +293,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
...
@@ -289,7 +293,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
func
=
getattr
(
self
,
'do_'
+
cmd
)
func
=
getattr
(
self
,
'do_'
+
cmd
)
except
AttributeError
:
except
AttributeError
:
func
=
self
.
default
func
=
self
.
default
if
func
.
func_name
in
self
.
commands_resuming
:
# one of the resuming commands.
# one of the resuming commands
if
func
.
func_name
in
self
.
commands_resuming
:
self
.
commands_doprompt
[
self
.
commands_bnum
]
=
False
self
.
commands_doprompt
[
self
.
commands_bnum
]
=
False
self
.
cmdqueue
=
[]
self
.
cmdqueue
=
[]
return
1
return
1
...
@@ -302,15 +307,18 @@ class Pdb(bdb.Bdb, cmd.Cmd):
...
@@ -302,15 +307,18 @@ class Pdb(bdb.Bdb, cmd.Cmd):
do_h
=
cmd
.
Cmd
.
do_help
do_h
=
cmd
.
Cmd
.
do_help
def
do_commands
(
self
,
arg
):
def
do_commands
(
self
,
arg
):
"""Defines a list of commands associated to a breakpoint
"""Defines a list of commands associated to a breakpoint.
Those commands will be executed whenever the breakpoint causes the program to stop execution."""
Those commands will be executed whenever the breakpoint causes
the program to stop execution."""
if
not
arg
:
if
not
arg
:
bnum
=
len
(
bdb
.
Breakpoint
.
bpbynumber
)
-
1
bnum
=
len
(
bdb
.
Breakpoint
.
bpbynumber
)
-
1
else
:
else
:
try
:
try
:
bnum
=
int
(
arg
)
bnum
=
int
(
arg
)
except
:
except
:
print
>>
self
.
stdout
,
"Usage : commands [bnum]
\n
...
\n
end"
print
>>
self
.
stdout
,
"Usage : commands [bnum]
\n
..."
\
"
\n
end"
return
return
self
.
commands_bnum
=
bnum
self
.
commands_bnum
=
bnum
self
.
commands
[
bnum
]
=
[]
self
.
commands
[
bnum
]
=
[]
...
@@ -648,8 +656,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
...
@@ -648,8 +656,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
do_n
=
do_next
do_n
=
do_next
def
do_run
(
self
,
arg
):
def
do_run
(
self
,
arg
):
"""Restart program by raising an exception to be caught in the main
debugger
"""Restart program by raising an exception to be caught in the main
loop.
If arguments were given, set them in sys.argv."""
debugger loop.
If arguments were given, set them in sys.argv."""
if
arg
:
if
arg
:
import
shlex
import
shlex
argv0
=
sys
.
argv
[
0
:
1
]
argv0
=
sys
.
argv
[
0
:
1
]
...
@@ -786,7 +794,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
...
@@ -786,7 +794,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
breaklist
=
self
.
get_file_breaks
(
filename
)
breaklist
=
self
.
get_file_breaks
(
filename
)
try
:
try
:
for
lineno
in
range
(
first
,
last
+
1
):
for
lineno
in
range
(
first
,
last
+
1
):
line
=
linecache
.
getline
(
filename
,
lineno
,
self
.
curframe
.
f_globals
)
line
=
linecache
.
getline
(
filename
,
lineno
,
self
.
curframe
.
f_globals
)
if
not
line
:
if
not
line
:
print
>>
self
.
stdout
,
'[EOF]'
print
>>
self
.
stdout
,
'[EOF]'
break
break
...
@@ -950,8 +959,8 @@ a linenumber was used instead of either filename:lineno or
...
@@ -950,8 +959,8 @@ a linenumber was used instead of either filename:lineno or
breakpoint numbers."""
breakpoint numbers."""
def
help_tbreak
(
self
):
def
help_tbreak
(
self
):
print
>>
self
.
stdout
,
"""tbreak same arguments as break, but breakpoint
is
print
>>
self
.
stdout
,
"""tbreak same arguments as break, but breakpoint
removed when first hit."""
is
removed when first hit."""
def
help_enable
(
self
):
def
help_enable
(
self
):
print
>>
self
.
stdout
,
"""enable bpnumber [bpnumber ...]
print
>>
self
.
stdout
,
"""enable bpnumber [bpnumber ...]
...
@@ -1097,7 +1106,7 @@ Prints the type of the argument."""
...
@@ -1097,7 +1106,7 @@ Prints the type of the argument."""
Handles the receipt of EOF as a command."""
Handles the receipt of EOF as a command."""
def
help_alias
(
self
):
def
help_alias
(
self
):
print
>>
self
.
stdout
,
"""alias [name [command [parameter parameter ...]
]]
print
>>
self
.
stdout
,
"""alias [name [command [parameter parameter ...]]]
Creates an alias called 'name' the executes 'command'. The command
Creates an alias called 'name' the executes 'command'. The command
must *not* be enclosed in quotes. Replaceable parameters are
must *not* be enclosed in quotes. Replaceable parameters are
indicated by
%1
,
%2
, and so on, while
%*
is replaced by all the
indicated by
%1
,
%2
, and so on, while
%*
is replaced by all the
...
@@ -1284,8 +1293,8 @@ def main():
...
@@ -1284,8 +1293,8 @@ def main():
# Note on saving/restoring sys.argv: it's a good idea when sys.argv was
# Note on saving/restoring sys.argv: it's a good idea when sys.argv was
# modified by the script being debugged. It's a bad idea when it was
# modified by the script being debugged. It's a bad idea when it was
# changed by the user from the command line. There is a "restart" command
which
# changed by the user from the command line. There is a "restart" command
# allows explicit specification of command line arguments.
#
which
allows explicit specification of command line arguments.
pdb
=
Pdb
()
pdb
=
Pdb
()
while
1
:
while
1
:
try
:
try
:
...
@@ -1306,7 +1315,8 @@ def main():
...
@@ -1306,7 +1315,8 @@ def main():
print
"Running 'cont' or 'step' will restart the program"
print
"Running 'cont' or 'step' will restart the program"
t
=
sys
.
exc_info
()[
2
]
t
=
sys
.
exc_info
()[
2
]
pdb
.
interaction
(
None
,
t
)
pdb
.
interaction
(
None
,
t
)
print
"Post mortem debugger finished. The "
+
mainpyfile
+
" will be restarted"
print
"Post mortem debugger finished. The "
+
mainpyfile
+
\
" will be restarted"
# When invoked as main program, invoke the debugger on a script
# When invoked as main program, invoke the debugger on a script
...
...
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