D7259: statprof: correctly always pass a str as the thread name
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Thu Nov 7 08:31:16 UTC 2019
Closed by commit rHG5c9daf7df2b4: statprof: correctly always pass a str as the thread name (authored by durin42).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7259?vs=17629&id=17676
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7259/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7259
AFFECTED FILES
mercurial/statprof.py
CHANGE DETAILS
diff --git a/mercurial/statprof.py b/mercurial/statprof.py
--- a/mercurial/statprof.py
+++ b/mercurial/statprof.py
@@ -352,7 +352,7 @@
frame = inspect.currentframe()
tid = [k for k, f in sys._current_frames().items() if f == frame][0]
state.thread = threading.Thread(
- target=samplerthread, args=(tid,), name=b"samplerthread"
+ target=samplerthread, args=(tid,), name="samplerthread"
)
state.thread.start()
To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list