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 /Doc/lib | |
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 'Doc/lib')
-rw-r--r-- | Doc/lib/libsys.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex index 8a60cb2..558fb36 100644 --- a/Doc/lib/libsys.tex +++ b/Doc/lib/libsys.tex @@ -394,8 +394,8 @@ else: \begin{funcdesc}{setcheckinterval}{interval} Set the interpreter's ``check interval''. This integer value determines how often the interpreter checks for periodic things such - as thread switches and signal handlers. The default is \code{10}, - meaning the check is performed every 10 Python virtual instructions. + as thread switches and signal handlers. The default is \code{100}, + meaning the check is performed every 100 Python virtual instructions. Setting it to a larger value may increase performance for programs using threads. Setting it to a value \code{<=} 0 checks every virtual instruction, maximizing responsiveness as well as overhead. |