Re: [Cython] star-imports in Cython/Includes/cpython considered harmful

2012-02-21 Thread Stefan Behnel
Robert Bradshaw, 21.02.2012 21:14: > On Mon, Feb 20, 2012 at 12:45 AM, Stefan Behnel wrote: >> I just noticed that the star-imports in the cpython package have serious >> side effects. The cpython/__init__.pxd file has this in it: >> >> """ >> from cpython.version cimport * >> from cpython.ref cimp

Re: [Cython] star-imports in Cython/Includes/cpython considered harmful

2012-02-21 Thread Robert Bradshaw
On Mon, Feb 20, 2012 at 12:45 AM, Stefan Behnel wrote: > Hi, > > I just noticed that the star-imports in the cpython package have serious > side effects. The cpython/__init__.pxd file has this in it: > > """ > from cpython.version cimport * > from cpython.ref cimport * > from cpython.exc cimport *

[Cython] star-imports in Cython/Includes/cpython considered harmful

2012-02-20 Thread Stefan Behnel
Hi, I just noticed that the star-imports in the cpython package have serious side effects. The cpython/__init__.pxd file has this in it: """ from cpython.version cimport * from cpython.ref cimport * from cpython.exc cimport * from cpython.module cimport * from cpython.mem cimport * ... """ This