diff --git a/Examples/test-suite/python/li_std_pair.i b/Examples/test-suite/python/li_std_pair.i index 509993438..886bf1a4b 100644 --- a/Examples/test-suite/python/li_std_pair.i +++ b/Examples/test-suite/python/li_std_pair.i @@ -34,7 +34,16 @@ namespace std { %template(CIntPair) pair; %template() pair; + %template(ShortPair) pair; + %template(IntPair) pair; + %extend pair + { + %template(pair) pair; + } + + + %template(SIPair) pair; %template(CIPair) pair, int>; %template(SIIPair) pair, int>; diff --git a/Examples/test-suite/python/template_static_runme.py b/Examples/test-suite/python/template_static_runme.py index e7f17af38..226d675ee 100644 --- a/Examples/test-suite/python/template_static_runme.py +++ b/Examples/test-suite/python/template_static_runme.py @@ -1,3 +1,3 @@ from template_static import * -print Foo.bar_double(1) +Foo.bar_double(1)