Re: [Cython] [cython] Hide Cython utility classes (like memoryview) from Python level module scope. (#222)

2013-05-05 Thread Stefan Behnel
Nikita Nemkin, 05.05.2013 14:26: > On Sun, 05 May 2013 17:03:54 +0600, Stefan Behnel wrote: > >> Nikita Nemkin, 04.05.2013 19:52: >>> Two changes included: >>> >>> 1) cdef classes in utility code can have compiler directives attached to >>> them. This is not used anywhere ATM, but memoryviews may

Re: [Cython] [cython] Hide Cython utility classes (like memoryview) from Python level module scope. (#222)

2013-05-05 Thread Nikita Nemkin
On Sun, 05 May 2013 17:03:54 +0600, Stefan Behnel wrote: Nikita Nemkin, 04.05.2013 19:52: Two changes included: 1) cdef classes in utility code can have compiler directives attached to them. This is not used anywhere ATM, but memoryviews may benefit from ``@cython.final``. 2) All util

Re: [Cython] [cython] Hide Cython utility classes (like memoryview) from Python level module scope. (#222)

2013-05-05 Thread Stefan Behnel
Nikita Nemkin, 04.05.2013 19:52: > Two changes included: > > 1) cdef classes in utility code can have compiler directives attached to > them. This is not used anywhere ATM, but memoryviews may benefit from > ``@cython.final``. > > 2) All utility classes are excluded from module dictionary by *i