diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-26 01:08:16 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-26 01:08:16 (GMT) |
commit | 60b52bd4ed1f964c125425d1f4c4e597487560e7 (patch) | |
tree | 54c98dbd0a9d9e2d3f77ef8074668ef344a8d3af | |
parent | 4eb60e5330758e1bdf9809dfa4bbe0991e16674d (diff) | |
download | cpython-60b52bd4ed1f964c125425d1f4c4e597487560e7.zip cpython-60b52bd4ed1f964c125425d1f4c4e597487560e7.tar.gz cpython-60b52bd4ed1f964c125425d1f4c4e597487560e7.tar.bz2 |
Fix typo in docstring (missing c in reacquire)
-rw-r--r-- | Lib/ctypes/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/__init__.py b/Lib/ctypes/__init__.py index 7dff3a7..8ab84ac 100644 --- a/Lib/ctypes/__init__.py +++ b/Lib/ctypes/__init__.py @@ -339,7 +339,7 @@ class CDLL(object): <obj>['qsort'] -> callable object Calling the functions releases the Python GIL during the call and - reaquires it afterwards. + reacquires it afterwards. """ class _FuncPtr(_CFuncPtr): _flags_ = _FUNCFLAG_CDECL |