summaryrefslogtreecommitdiffstats
path: root/Mac/Modules
diff options
context:
space:
mode:
authorJust van Rossum <just@letterror.com>2003-05-03 00:38:26 (GMT)
committerJust van Rossum <just@letterror.com>2003-05-03 00:38:26 (GMT)
commitd77bee14760fb09612d4b0580c5fe797cb9c6ebd (patch)
tree1ce3b69396c534e1a353fb1acb505e447c439f02 /Mac/Modules
parent4e2d23226fb3cb93b21507276c238e316b078007 (diff)
downloadcpython-d77bee14760fb09612d4b0580c5fe797cb9c6ebd.zip
cpython-d77bee14760fb09612d4b0580c5fe797cb9c6ebd.tar.gz
cpython-d77bee14760fb09612d4b0580c5fe797cb9c6ebd.tar.bz2
fixed typo
Diffstat (limited to 'Mac/Modules')
-rw-r--r--Mac/Modules/autoGIL.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/autoGIL.c b/Mac/Modules/autoGIL.c
index 4ee1e75..3108816 100644
--- a/Mac/Modules/autoGIL.c
+++ b/Mac/Modules/autoGIL.c
@@ -108,9 +108,9 @@ autoGIL_installAutoGIL(PyObject *self)
PyDoc_STRVAR(autoGIL_installAutoGIL_doc,
"installAutoGIL() -> None\n\
Install an observer callback in the event loop (CFRunLoop) for the\n\
-current thread that will lock and unlock the Global Interpreter Lock\n\
+current thread, that will lock and unlock the Global Interpreter Lock\n\
(GIL) at appropriate times, allowing other Python threads to run while\n\
-the event loop is running."
+the event loop is idle."
);
static PyMethodDef autoGIL_methods[] = {