with-quot>py-cfunction ( alien quot -- ) (original) (raw)
with-quot>py-cfunction ( alien quot -- )
Vocabulary
python
Inputs
alien | an alien |
---|---|
quot | a quotation |
Outputs
None
Word description
Wrapper for with-callback to be used when passing functions as arguments to Python functions. It should be used in conjunction with quot>py-callback which creates the callbacks this word consumes.
Definition
USING: alien kernel python.objects ;
: with-quot>py-cfunction ( alien quot -- )
[ [ ] ] dip compose with-callback ; inline