Skip to content

Commit

Permalink
Remove some obsolete TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Oct 17, 2014
1 parent a225968 commit 8dae818
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/py_adaptors.h
Expand Up @@ -18,9 +18,6 @@ extern "C" {
int convert_path(PyObject *obj, void *pathp);
}

// TODO: Base this on numpy::array_view so we don't have to do our own
// reference counting

namespace py
{

Expand Down
2 changes: 0 additions & 2 deletions src/py_converters.cpp
Expand Up @@ -475,8 +475,6 @@ int convert_gcagg(PyObject *pygc, void *gcp)
{
GCAgg *gc = (GCAgg *)gcp;

// TODO: Publicize GCAgg members so we can write directly into them

if (!(convert_from_attr(pygc, "_linewidth", &convert_double, &gc->linewidth) &&
convert_from_attr(pygc, "_alpha", &convert_double, &gc->alpha) &&
convert_from_attr(pygc, "_forced_alpha", &convert_bool, &gc->forced_alpha) &&
Expand Down

0 comments on commit 8dae818

Please sign in to comment.