Open
Description
Porting the python docstring over to the c stub output is handy for maintaining even more documentation synchronization.
Eg.
"""
This module is developed for adding new functionality to upython
We want tabs
"""
Should translate to
/*
This module is developed for adding new functionality to upython
We want tabs
*/
There could be a case for adding ustubby generic output to the generated file so that the source is not lost
/*
This module is developed for adding new functionality to upython
We want tabs
This file was auto-generated using uStubby.
Please see https://github.com/pazzarpj/micropython-ustubby
*/
Activity