[pypy-svn] r75003 - pypy/trunk/pypy/module/cpyext

fijal at codespeak.net fijal at codespeak.net
Tue Jun 1 16:42:08 CEST 2010


Author: fijal
Date: Tue Jun  1 16:42:06 2010
New Revision: 75003

Modified:
   pypy/trunk/pypy/module/cpyext/methodobject.py
Log:
remove completely bogus assert


Modified: pypy/trunk/pypy/module/cpyext/methodobject.py
==============================================================================
--- pypy/trunk/pypy/module/cpyext/methodobject.py	(original)
+++ pypy/trunk/pypy/module/cpyext/methodobject.py	Tue Jun  1 16:42:06 2010
@@ -125,7 +125,6 @@
         self.space = space
         self.method_name = method_name
         self.wrapper_func = wrapper_func
-        assert not isinstance(wrapper_func_kwds, str)
         self.wrapper_func_kwds = wrapper_func_kwds
         self.doc = doc
         self.func = func



More information about the Pypy-commit mailing list