merge
authorRobert Bradshaw <robertwb@math.washington.edu>
Sun, 30 Mar 2008 10:14:26 +0000 (03:14 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sun, 30 Mar 2008 10:14:26 +0000 (03:14 -0700)
Demos/Setup.py
runtests.py
tests/run/unpacklistcomp.pyx

index a9de16ad50f5a73100ffed94efc39c74cc69fcb1..18e05820ba4c7686d7e3f74fcf0f12734596e0f2 100644 (file)
@@ -16,7 +16,7 @@ setup(
 #    Extension("inherit_bug", ["inherit_bug.pyx"]),
     Extension("override", ["override.pyx"]),
     Extension("cond", ["cond.pyx"]),
-    Extension("submodule.test",       ["submodule/test.pyx"]),
+#    Extension("submodule.test",       ["submodule/test.pyx"]),
     Extension("errors",       ["errors.pyx"]),
     Extension("cpdef",       ["cpdef.pyx"]),
     Extension("range",       ["range.pyx"]),
@@ -24,6 +24,7 @@ setup(
     Extension("ints",       ["ints.pyx"]),
     Extension("clear",       ["clear.pyx"]),
     Extension("detect_override",       ["detect_override.pyx"]),
+    Extension("fixes",       ["fixes.pyx"]),
     ],
   cmdclass = {'build_ext': build_ext},
 #  include_dirs = "/System/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3/"
index 53f2412b8ed2bd3664d51436a2f91113dbfee891..d5bf75dce3d43d22b9d28181bc0544c3d5f36b21 100644 (file)
@@ -2,8 +2,12 @@
 
 import os, sys, unittest, doctest
 
-from Cython.Distutils.build_ext import build_ext
-from Cython.Distutils.extension import Extension
+#from Cython.Distutils.build_ext import build_ext
+#from Cython.Distutils.extension import Extension
+
+from distutils.extension import Extension
+from Cython.Distutils import build_ext
+
 
 from distutils.dist import Distribution
 distutils_distro = Distribution()
index ada619234fdfdd2ea1030c27c9f0e4429bd4c54a..00c2f7cbfc95c8b11be015cca95a39080c62c99f 100644 (file)
@@ -1,30 +1,21 @@
 __doc__ = """
     >>> unpack_normal([1,2])
     (1, 2)
-    >>> unpack_normal([1,2,3])
+    >>> unpack_normal([1,2,3]) # doctest: +ELLIPSIS
     Traceback (most recent call last):
-    ValueError: too many values to unpack
-    >>> unpack_normal([1])
-    Traceback (most recent call last):
-    ValueError: need more than 1 values to unpack
+    ValueError: ...
 
     >>> unpack_comp([1,2])
     (1, 2)
-    >>> unpack_comp([1,2,3])
-    Traceback (most recent call last):
-    ValueError: too many values to unpack
-    >>> unpack_comp([1])
+    >>> unpack_comp([1,2,3]) # doctest: +ELLIPSIS
     Traceback (most recent call last):
-    ValueError: need more than 1 values to unpack
+    ValueError: ...
 
     >>> unpack_expr([1,2])
     (1, 4)
-    >>> unpack_expr([1,2,3])
-    Traceback (most recent call last):
-    ValueError: too many values to unpack
-    >>> unpack_expr([1])
+    >>> unpack_expr([1,2,3]) # doctest: +ELLIPSIS
     Traceback (most recent call last):
-    ValueError: need more than 1 values to unpack
+    ValueError: ...
 """
 
 def unpack_normal(l):