mattip <[email protected]> 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 <[email protected]> <https://bugs.pypy.org/issue1548> ________________________________________ _______________________________________________ pypy-issue mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-issue
