8000 Remove PyCXX dependency for core extension modules by mdboom · Pull Request #3646 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Remove PyCXX dependency for core extension modules #3646

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 18 commits into from
Oct 18, 2014
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
More Python 3 fixes
  • Loading branch information
mdboom committed Oct 17, 2014
commit c5ab7474a02f16e75e1bbabcb7af5f7d72f6f847
6 changes: 3 additions & 3 deletions src/_path_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ static PyObject *Py_update_path_extents(PyObject *self, PyObject *args, PyObject
agg::trans_affine trans;
agg::rect_d rect;
numpy::array_view<double, 1> minpos;
bool ignore;
bool changed;
int ignore;
int changed;

if (!PyArg_ParseTuple(args,
"O&O&O&O&i:update_path_extents",
Expand Down Expand Up @@ -466,7 +466,7 @@ static PyObject *Py_path_intersects_path(PyObject *self, PyObject *args, PyObjec
{
py::PathIterator p1;
py::PathIterator p2;
bool filled = false;
int filled = 0;
const char *names[] = { "p1", "p2", "filled", NULL };
bool result;

Expand Down
0