/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/python/cpp11_final_directors_runme.py
11 строк
173 B
Zackery Spytz
Fix the handling of director classes with final methods
22 фев 2019, 16:28
22 фев 2019, 16:28
c3d652c
Код
Авторство
О чём код?
import cpp11_final_directors class Derived2(cpp11_final_directors.Derived): def meth(self): return 3 b = Derived2() if b.meth() != 3: raise RuntimeError