X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcpython.h;h=81e580d485c9bd58c625df40b369edd75dd94e75;hb=8438e249445f2a1785f9de40a0c8da9889f0b8d1;hp=4b8aa72143167864ff575147c5ef19949997ab50;hpb=36c2225ae8bc9c4dc20f57276bcb58babf44b45c;p=collectd.git diff --git a/src/cpython.h b/src/cpython.h index 4b8aa721..81e580d4 100644 --- a/src/cpython.h +++ b/src/cpython.h @@ -28,7 +28,7 @@ #include -/* These two macros are basicly Py_BEGIN_ALLOW_THREADS and Py_BEGIN_ALLOW_THREADS +/* These two macros are basically Py_BEGIN_ALLOW_THREADS and Py_BEGIN_ALLOW_THREADS * from the other direction. If a Python thread calls a C function * Py_BEGIN_ALLOW_THREADS is used to allow other python threads to run because * we don't intend to call any Python functions. @@ -36,7 +36,7 @@ * These two macros are used whenever a C thread intends to call some Python * function, usually because some registered callback was triggered. * Just like Py_BEGIN_ALLOW_THREADS it opens a block so these macros have to be - * used in pairs. They aquire the GIL, create a new Python thread state and swap + * used in pairs. They acquire the GIL, create a new Python thread state and swap * the current thread state with the new one. This means this thread is now allowed * to execute Python code. */