diff options
author | 1998-03-23 15:31:22 +0000 | |
---|---|---|
committer | 1998-03-23 15:31:22 +0000 | |
commit | c8d36284f3456af9991df6f225f6dc1af742aa3a (patch) | |
tree | 9609a5c0d25e899441ca32bbf6fec3330af548d3 /Lib/pstats.py | |
parent | Give in to the tab police. (diff) | |
download | cpython-c8d36284f3456af9991df6f225f6dc1af742aa3a.tar.gz cpython-c8d36284f3456af9991df6f225f6dc1af742aa3a.tar.bz2 cpython-c8d36284f3456af9991df6f225f6dc1af742aa3a.zip |
Give in to Timmy's Tedious Tab Theorem.
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r-- | Lib/pstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py index 5bc70b367cf..b62aa988683 100644 --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -477,7 +477,7 @@ class TupleComp: def func_strip_path(func_name): file, line, name = func_name - return os.path.basename(file), line, name + return os.path.basename(file), line, name def func_get_function_name(func): return func[2] |