diff options
author | Skip Montanaro <skip@pobox.com> | 2003-07-02 21:38:34 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-07-02 21:38:34 (GMT) |
commit | eec26f982a6e953eb1d6cc1ca570fb629bdd6ceb (patch) | |
tree | 301ae1d6f38a4e16ba7fdaa4949174faf9a2e471 /Misc/cheatsheet | |
parent | 74902508dc395014dbdb9c2ed08263202e5d4e30 (diff) | |
download | cpython-eec26f982a6e953eb1d6cc1ca570fb629bdd6ceb.zip cpython-eec26f982a6e953eb1d6cc1ca570fb629bdd6ceb.tar.gz cpython-eec26f982a6e953eb1d6cc1ca570fb629bdd6ceb.tar.bz2 |
Correct documentation of check interval - it's 100 by default, not 10 any
longer. Pointed out by Alex Martelli.
Diffstat (limited to 'Misc/cheatsheet')
-rw-r--r-- | Misc/cheatsheet | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/cheatsheet b/Misc/cheatsheet index 8563c5a..ee4b8e0 100644 --- a/Misc/cheatsheet +++ b/Misc/cheatsheet @@ -1361,7 +1361,7 @@ getrefcount(object Returns the reference count of the object. Generally one ) higher than you might expect, because of object arg temp reference. setcheckinterval( Sets the interpreter's thread switching interval (in number -interval) of virtual code instructions, default:10). +interval) of virtual code instructions, default:100). settrace(func) Sets a trace function: called before each line ofcode is exited. setprofile(func) Sets a profile function for performance profiling. |