Make tests cleaner.
authorRobert Bradshaw <robertwb@math.washington.edu>
Wed, 10 Feb 2010 23:59:36 +0000 (15:59 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Wed, 10 Feb 2010 23:59:36 +0000 (15:59 -0800)
tests/run/cpp_nested_templates.pyx
tests/run/cpp_templates.pyx

index dbfcab1bdffb733eb6479e5261997a195fd89e6f..7c79e3b88ca95f2be593f988bed0dee22411ddbc 100644 (file)
@@ -21,8 +21,6 @@ def test_wrap_pair(int i, double x):
     >>> test_wrap_pair(2, 2.25)
     (2, 2.25, True)
     """
-    cdef Pair[int, double] *pair
-    cdef Wrap[Pair[int, double]] *wrap
     try:
         pair = new Pair[int, double](i, x)
         wrap = new Wrap[Pair[int, double]](deref(pair))
index 118dfa08082ed4ca6550108e62c7e6e057493831..1a700feac9f51da79c40659f74e9edcfb6c462bc 100644 (file)
@@ -21,7 +21,6 @@ def test_int(int x, int y):
     >>> test_int(100, 100)
     (100, 100, True)
     """
-    cdef Wrap[int] *a, *b
     try:
         a = new Wrap[int](x)
         b = new Wrap[int](0)
@@ -38,7 +37,6 @@ def test_double(double x, double y):
     >>> test_double(100, 100)
     (100.0, 100.0, True)
     """
-    cdef Wrap[double] *a, *b
     try:
         a = new Wrap[double](x)
         b = new Wrap[double](-1)
@@ -54,7 +52,6 @@ def test_pair(int i, double x):
     >>> test_pair(2, 2.25)
     (2, 2.25, True, False)
     """
-    cdef Pair[int, double] *pair
     try:
         pair = new Pair[int, double](i, x)
         return pair.first(), pair.second(), deref(pair) == deref(pair), deref(pair) != deref(pair)