From 5349929a71da0e535ee44f1dac2a67a5a515659e Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Tue, 5 Jan 2021 16:23:28 +0000 Subject: [PATCH] added some tasks to binarycpython c sourcecode --- src/binary_c_python.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/binary_c_python.c b/src/binary_c_python.c index 97547ef2c..443f4cbe6 100644 --- a/src/binary_c_python.c +++ b/src/binary_c_python.c @@ -37,6 +37,16 @@ * TODO: Put in clear debug statements * TODO: properly return stderr * TODO: describe all functions with docstrings + * TODO: properly pass through all the pointers using Capsules: + https://docs.python.org/3.6/c-api/capsule.html#c.PyCapsule_New + https://gist.github.com/Sleepingwell/5259476 + https://bfroehle.com/2011/07/18/python-capsules/ + https://docs.python.domainunion.de/3.6/howto/cporting.html + https://lappweb.in2p3.fr/~paubert/ASTERICS_HPC/5-6-3-651.html + https://www.geeksforgeeks.org/c-api-from-extension-module-in-python-set-1/ + http://pageperso.lif.univ-mrs.fr/~francois.denis/IAAM1/python-3.6.5rc1-docs-html/howto/cporting.html + http://python3porting.com/cextensions.html + */ -- GitLab