diff options
author | Guido van Rossum <guido@python.org> | 1999-04-13 04:24:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-04-13 04:24:22 (GMT) |
commit | dabcd0040cf79d46e1c754f829e514bf54d4474e (patch) | |
tree | 282c246a19948288f9b57eb08e5d4a3e492e4a1e /Lib/pstats.py | |
parent | ba3ed56a222f5d14b535c56035131b4a5906f2d5 (diff) | |
download | cpython-dabcd0040cf79d46e1c754f829e514bf54d4474e.zip cpython-dabcd0040cf79d46e1c754f829e514bf54d4474e.tar.gz cpython-dabcd0040cf79d46e1c754f829e514bf54d4474e.tar.bz2 |
Fix mysterious references to jprofile that were in the source since
its creation. I'm assuming these were once valid references to "Jim
Roskind's profile"...
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 b62aa98..25ca7fb 100644 --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -4,7 +4,7 @@ # Based on prior profile module by Sjoerd Mullender... # which was hacked somewhat by: Guido van Rossum # -# see jprofile.doc and jprofile.py for more info. +# see profile.doc and profile.py for more info. # Copyright 1994, by InfoSeek Corporation, all rights reserved. # Written by James Roskind |