/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/python/smart_pointer_overload_runme.py
19 строк
330 B
Jon Schlueter
autopep8 cleanup of Examples/test-suite/python
09 май 2015, 04:35
09 май 2015, 04:35
b77f3af
Код
Авторство
О чём код?
from smart_pointer_overload import * f = Foo() b = Bar(f) if f.test(3) != 1: raise RuntimeError if f.test(3.5) != 2: raise RuntimeError if f.test("hello") != 3: raise RuntimeError if b.test(3) != 1: raise RuntimeError if b.test(3.5) != 2: raise RuntimeError if b.test("hello") != 3: raise RuntimeError