D7477: util: add an optional `prefix` argument to debugstacktrace
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Nov 23 04:07:36 UTC 2019
Closed by commit rHG6301ea7a26b6: util: add an optional `prefix` argument to debugstacktrace (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7477?vs=18284&id=18329
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7477/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7477
AFFECTED FILES
mercurial/util.py
CHANGE DETAILS
diff --git a/mercurial/util.py b/mercurial/util.py
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -3466,6 +3466,7 @@
f=procutil.stderr,
otherf=procutil.stdout,
depth=0,
+ prefix=b'',
):
'''Writes a message to f (stderr) with a nicely formatted stacktrace.
Skips the 'skip' entries closest to the call, then show 'depth' entries.
@@ -3475,9 +3476,9 @@
'''
if otherf:
otherf.flush()
- f.write(b'%s at:\n' % msg.rstrip())
+ f.write(b'%s%s at:\n' % (prefix, msg.rstrip()))
for line in getstackframes(skip + 1, depth=depth):
- f.write(line)
+ f.write(prefix + line)
f.flush()
To: marmoute, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list