aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/examples/howto/advanced (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-12-12python: advanced howto exampleBen McGinnes1-0/+1
* Added Cython requirement to this advanced use case.
2018-09-17docs: python bindingsBen McGinnes2-4/+14
* Updated the Cython example code slightly, along with the corresponding explanation.
2018-09-16docs: cython sanitizedBen McGinnes1-2997/+0
* Sanitized the shell command examples of extraneous whitespace. * Removed keycount.c as sanitising it is pointless and it will be generated by Cython when the example is followed. * Regenerated the .texi version.
2018-09-16docs: python bindings howtoBen McGinnes3-0/+3019
* Added new advanced section with an example of using the Python bindings with CPython code compiled back to C code using Cython. * Though it may seem a bit counter-intuitive to use the bindings just to go back to C via a different route, this is not actually stupid. * Added examples/howto/advanced/cython/ directory. * Added keycount.pyx, setup.py and the keycount.c file which the first two generated with Cython. Not including the .so and .o files from the build. * Exported the .texi version of the howto for the main docs.