Skip to content
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

SfntNames.get_name() raises KeyError if missing #7

Merged
merged 2 commits into from
Nov 6, 2015

Conversation

mdboom
Copy link
Member

@mdboom mdboom commented Nov 5, 2015

No description provided.

@@ -129,7 +129,8 @@ Py_SfntNames_get_name(Py_SfntNames* self, PyObject* args, PyObject* kwds) {
}
}

Py_RETURN_NONE;
PyErr_Format(PyExc_KeyError, "No name of type %d", name);
return NULL;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Learning the c-api very slowly. https://docs.python.org/3.5/c-api/exceptions.html#c.PyErr_Format says it always returns NULL, could this be simplified to

return PyErr_Format(PyExc_KeyError, "No name of type %d", name);

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah. That's not a bad idea.

tacaswell added a commit that referenced this pull request Nov 6, 2015
SfntNames.get_name() raises KeyError if missing
@tacaswell tacaswell merged commit 24d3ac0 into matplotlib:master Nov 6, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants