/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/python/overload_extend_c_runme.py
13 строк
277 B
William S Fulton
Duplicate tests that are run twice as both C and C++ tests to fix parallel make: overload_extend
21 фев 2016, 22:24
21 фев 2016, 22:24
155e316
Код
Авторство
О чём код?
import overload_extend_c f = overload_extend_c.Foo() if f.test() != 0: raise RuntimeError if f.test(3) != 1: raise RuntimeError if f.test("hello") != 2: raise RuntimeError if f.test(3, 2) != 5: raise RuntimeError if f.test(3.0) != 1003: raise RuntimeError