[pypy-commit] cffi default: That could have been simpler

stefanor noreply at buildbot.pypy.org
Thu Feb 28 09:08:24 CET 2013


Author: Stefano Rivera <stefano at rivera.za.net>
Branch: 
Changeset: r1172:25579465c12b
Date: 2013-02-23 14:49 +0200
http://bitbucket.org/cffi/cffi/changeset/25579465c12b/

Log:	That could have been simpler

diff --git a/cffi/verifier.py b/cffi/verifier.py
--- a/cffi/verifier.py
+++ b/cffi/verifier.py
@@ -73,9 +73,9 @@
         # kill both the .so extension and the other .'s, as introduced
         # by Python 3: 'basename.cpython-33m.so'
         basename = basename.split('.', 1)[0]
-        # kill the _d added in Python 2 debug builds
+        # and the _d added in Python 2 debug builds
         if basename.endswith('_d'):
-            basename = basename.rsplit('_', 1)[0]
+            basename = basename[:-2]
         return basename
 
     def get_extension(self):


More information about the pypy-commit mailing list