/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/python/python_extranative_runme.py
10 строк
349 B
William S Fulton
Python - fix compilation error when using -extranative and -builtin.
03 ноя 2016, 01:00
03 ноя 2016, 01:00
bdda0a0
Код
Авторство
О чём код?
import python_extranative vs = python_extranative.make_vector_string() if not isinstance(vs, python_extranative.VectorString): # will be of type tuple if extranative not working raise RuntimeError("Not of type VectorString") for s1, s2 in zip(vs, ["one", "two"]): if s1 != s2: raise RuntimeError("Mismatch: " + s1 + " " + s2)