Re: [Cython] Seemingly incorrect specialization of templates

2013-12-17 Thread Vinay Sajip
Sorry, some parts of my post appear to have been duplicated. Not sure how that happened. Regards, Vinay Sajip ___ cython-devel mailing list cython-devel@python.org https://mail.python.org/mailman/listinfo/cython-devel

[Cython] Seemingly incorrect specialization of templates

2013-12-16 Thread Vinay Sajip
Given this code in Cython/Includes/libcpp/utility.pxd: cdef extern from "" namespace "std": cdef cppclass pair[T, U]: T first U second # rest omitted when the following code in Cython/Includes/libcpp/map.pxd is seen: from utility cimport pair cdef extern from "" name