/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/python/nested_template_base_runme.py
13 строк
326 B
Jon Schlueter
autopep8 cleanup of Examples/test-suite/python
09 май 2015, 04:35
09 май 2015, 04:35
b77f3af
Код
Авторство
О чём код?
from nested_template_base import * ois = InnerS(123) oic = InnerC() # Check base method is available if (oic.outer(ois).val != 123): raise RuntimeError("Wrong value calling outer") # Check non-derived class using base class if (oic.innerc().outer(ois).val != 123): raise RuntimeError("Wrong value calling innerc")