switching from Cython to Python C API

This commit is contained in:
Philipp Moritz
2016-03-10 12:35:31 -08:00
parent b5a210b715
commit f47bad3828
15 changed files with 400 additions and 651 deletions
+4 -5
View File
@@ -41,10 +41,9 @@ public:
objstore_not_registered_error(const std::string& msg) : std::runtime_error(msg) {}
};
// struct slice {
// char* data;
// size_t len;
// };
struct slice {
char* data;
size_t len;
};
#endif