/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/python/docstrings/example.i
13 строк
276 B
Olly Betts
[Python] Fix lack of generation of docstrings when -O is used.
20 апр 2007, 05:16
20 апр 2007, 05:16
898e5f7
Код
Авторство
О чём код?
/* File : example.i */ %module example %{ #include "example.h" %} /* %feature("docstring") has to come before the declaration of the method to * SWIG. */ %feature("docstring") Foo::bar "No comment" /* Let's just grab the original header file here */ %include "example.h"