10000 [BLD] enable cython coverage, use cythonize by jbrockmendel · Pull Request #21879 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

[BLD] enable cython coverage, use cythonize #21879

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jul 20, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix signature of dummy cythonize
  • Loading branch information
jbrockmendel committed Jul 14, 2018
commit d46fe91084e01c08d8a3860288a86f8b13799fbe
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def is_platform_windows():
_CYTHON_INSTALLED = ver >= LooseVersion(min_cython_ver)
except ImportError:
_CYTHON_INSTALLED = False
cythonize = lambda x: x # dummy func
cythonize = lambda x, *args, **kwargs: x # dummy func

# The import of Extension must be after the import of Cython, otherwise
# we do not get the appropriately patched class.
Expand Down
0