[pypy-svn] r76061 - pypy/branch/reflex-support/pypy/module/cppyy

antocuni at codespeak.net antocuni at codespeak.net
Fri Jul 9 11:01:35 CEST 2010


Author: antocuni
Date: Fri Jul  9 11:01:34 2010
New Revision: 76061

Modified:
   pypy/branch/reflex-support/pypy/module/cppyy/helper.py
Log:
translation fix


Modified: pypy/branch/reflex-support/pypy/module/cppyy/helper.py
==============================================================================
--- pypy/branch/reflex-support/pypy/module/cppyy/helper.py	(original)
+++ pypy/branch/reflex-support/pypy/module/cppyy/helper.py	Fri Jul  9 11:01:34 2010
@@ -16,4 +16,4 @@
 def clean_type(name):
     assert name.find("const") == -1
     i = _find_qualifier_index(name)
-    return name[:i].strip()
+    return name[:i].strip(' ')



More information about the Pypy-commit mailing list