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
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 *
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