Commit d77bee14 authored by Just van Rossum's avatar Just van Rossum

fixed typo

parent 4e2d2322
...@@ -108,9 +108,9 @@ autoGIL_installAutoGIL(PyObject *self) ...@@ -108,9 +108,9 @@ autoGIL_installAutoGIL(PyObject *self)
PyDoc_STRVAR(autoGIL_installAutoGIL_doc, PyDoc_STRVAR(autoGIL_installAutoGIL_doc,
"installAutoGIL() -> None\n\ "installAutoGIL() -> None\n\
Install an observer callback in the event loop (CFRunLoop) for the\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\ (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[] = { static PyMethodDef autoGIL_methods[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment