We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently PyRDF.include only supports python callable of this shape:
PyRDF.include
def f(a, b, c): import ROOT ROOT.myCppFunction(a, b, c) PyRDF.initialize(f, a, b, c)
It would be useful to support any of the following calls:
PyRDF.initialize(ROOT.myCppFunction, a, b, c) PyRDF.initialize("myCppFunction", a, b, c) PyRDF.initialize(f, a, b, c)
This way the code would be cleaner.
The text was updated successfully, but these errors were encountered:
This could be refactored with the new PyROOT feature to wrap any python function in a C++ function pointer and execute it on the C++ side. To be seen
Sorry, something went wrong.
No branches or pull requests
Currently
PyRDF.include
only supports python callable of this shape:It would be useful to support any of the following calls:
This way the code would be cleaner.
The text was updated successfully, but these errors were encountered: