Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8dae818

Browse files
committed
Remove some obsolete TODOs
1 parent a225968 commit 8dae818

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/py_adaptors.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ extern "C" {
1818
int convert_path(PyObject *obj, void *pathp);
1919
}
2020

21-
// TODO: Base this on numpy::array_view so we don't have to do our own
22-
// reference counting
23-
2421
namespace py
2522
{
2623

src/py_converters.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,8 +475,6 @@ int convert_gcagg(PyObject *pygc, void *gcp)
475475
{
476476
GCAgg *gc = (GCAgg *)gcp;
477477

478-
// TODO: Publicize GCAgg members so we can write directly into them
479-
480478
if (!(convert_from_attr(pygc, "_linewidth", &convert_double, &gc->linewidth) &&
481479
convert_from_attr(pygc, "_alpha", &convert_double, &gc->alpha) &&
482480
convert_from_attr(pygc, "_forced_alpha", &convert_bool, &gc->forced_alpha) &&

0 commit comments

Comments
 (0)