diff options
author | W. Trevor King <wking@tremily.us> | 2012-10-26 08:12:08 -0400 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2012-10-26 08:16:38 -0400 |
commit | 26aadf775cbafd14e98870f818aae078181080d8 (patch) | |
tree | fadb78851ae7bd32fd8b89d59ae5668aac957e11 /doc/hacking.txt | |
parent | 3b8cf46403e0a827a2a4b3f81b654323c821f5b1 (diff) | |
download | bugseverywhere-26aadf775cbafd14e98870f818aae078181080d8.tar.gz |
doc: update :func: to :py:func: for modern Sphinx.
Diffstat (limited to 'doc/hacking.txt')
-rw-r--r-- | doc/hacking.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/hacking.txt b/doc/hacking.txt index 941dfde..2684597 100644 --- a/doc/hacking.txt +++ b/doc/hacking.txt @@ -72,7 +72,7 @@ execution + childrens' times):: $ python -c "import pstats; p=pstats.Stats('profile'); p.sort_stats('cumulative').print_stats(20)" If you want to find out who's calling your expensive function -(e.g. :func:`libbe.util.subproc.invoke`), try:: +(e.g. :py:func:`libbe.util.subproc.invoke`), try:: $ python -c "import pstats; p=pstats.Stats('profile'); p.sort_stats('cumulative').print_callers(20)" |