[Python-checkins] r72757 - python/branches/py3k/Include/pycapsule.h

georg.brandl python-checkins at python.org
Mon May 18 00:19:14 CEST 2009


Author: georg.brandl
Date: Mon May 18 00:19:14 2009
New Revision: 72757

Log:
Remove trailing whitespace.

Modified:
   python/branches/py3k/Include/pycapsule.h

Modified: python/branches/py3k/Include/pycapsule.h
==============================================================================
--- python/branches/py3k/Include/pycapsule.h	(original)
+++ python/branches/py3k/Include/pycapsule.h	Mon May 18 00:19:14 2009
@@ -2,12 +2,12 @@
 /* Capsule objects let you wrap a C "void *" pointer in a Python
    object.  They're a way of passing data through the Python interpreter
    without creating your own custom type.
- 
+
    Capsules are used for communication between extension modules.
    They provide a way for an extension module to export a C interface
    to other extension modules, so that extension modules can use the
    Python import mechanism to link to one another.
- 
+
    For more information, please see "c-api/capsule.html" in the
    documentation.
 */
@@ -26,7 +26,7 @@
 
 
 PyAPI_FUNC(PyObject *) PyCapsule_New(
-    void *pointer, 
+    void *pointer,
     const char *name,
     PyCapsule_Destructor destructor);
 


More information about the Python-checkins mailing list