[Python-checkins] r57483 - python/trunk/Lib/ctypes/__init__.py

neal.norwitz python-checkins at python.org
Sun Aug 26 03:08:17 CEST 2007


Author: neal.norwitz
Date: Sun Aug 26 03:08:16 2007
New Revision: 57483

Modified:
   python/trunk/Lib/ctypes/__init__.py
Log:
Fix typo in docstring (missing c in reacquire)

Modified: python/trunk/Lib/ctypes/__init__.py
==============================================================================
--- python/trunk/Lib/ctypes/__init__.py	(original)
+++ python/trunk/Lib/ctypes/__init__.py	Sun Aug 26 03:08:16 2007
@@ -339,7 +339,7 @@
     <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


More information about the Python-checkins mailing list