[pypy-issue] [issue1548] numpypy ravel() bug

mattip tracker at bugs.pypy.org
Mon Jul 29 04:29:46 CEST 2013


mattip <matti.picus at gmail.com> added the comment:

-    def descr_ravel(self, space):
+    @unwrap_spec(order=str) 
+    def descr_ravel(self, space, order='C'):
+        if order != 'C':
+            raise OperationError(space.w_NotImplementedError ...

----------
nosy: +mattip

________________________________________
PyPy bug tracker <tracker at bugs.pypy.org>
<https://bugs.pypy.org/issue1548>
________________________________________


More information about the pypy-issue mailing list