[Cython] [cython-users] Re: Cython 0.17 beta 1 released

Yaroslav Halchenko lists at onerussian.com
Wed Aug 1 17:21:30 CEST 2012


sorry about the delay -- was not monitoring the ML tight enough ;)

So it is the
commit 8443607d7dffc7c8443d70036e0cce6aaa9c26e2
Author: Stefan Behnel <stefan_ml at behnel.de>
Date:   Tue Jul 31 21:49:20 2012 +0200

    determine buffer typegroup of integer dtypes based on signedness at C compile time
...

I pulled current master and that specific test which failed before passes now:

(s390x-sid)yoh at zelenka:~/cython/cython$ git describe --tags
0.16rc1-547-g68811fa
(s390x-sid)yoh at zelenka:~/cython/cython$ OPT="-g -O0"  /usr/bin/python runtests.py -vv memoryview_compare_type_pointers --no-cleanup 
Python 2.7.3 (default, Jul 14 2012, 05:19:55) 
[GCC 4.6.3]

Running tests against Cython 0.17.beta1 68811fa9946e4253ad405ba3011512a32807bc7b
Backends: c,cpp

runTest (__main__.EndToEndTest)
End-to-end memoryview_compare_type_pointers ... ok

----------------------------------------------------------------------
Ran 1 test in 8.641s

OK
ALL DONE


Let me run the entire suite and report back if any oddity.  Thanks!

On Tue, 31 Jul 2012, Stefan Behnel wrote:
> Yaroslav, could you give it a try on the Debian build servers?

> Stefan


> diff -r 0d14a856f2cd Cython/Compiler/Buffer.py
> --- a/Cython/Compiler/Buffer.py	Tue Jul 31 20:05:37 2012 +0200
> +++ b/Cython/Compiler/Buffer.py	Tue Jul 31 21:10:13 2012 +0200
> @@ -680,32 +680,25 @@
>          rep = str(dtype)

>          flags = "0"
> -
> +        is_unsigned = "0"
>          if dtype.is_int:
> -            if dtype.signed == 0:
-- 
Yaroslav O. Halchenko
Postdoctoral Fellow,   Department of Psychological and Brain Sciences
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834                       Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik        


More information about the cython-devel mailing list