[issue30066] anaconda3::traitsu::NotImplementedError

2017-04-13 Thread Berker Peksag
Berker Peksag added the comment: Please report this to either traits or traitsui developers. This issue tracker is for issues with CPython and its standard library, not for third-party modules on PyPI. -- nosy: +berker.peksag resolution: -> not a bug stage: -> resolved status: open

[issue30066] anaconda3::traitsu::NotImplementedError

2017-04-13 Thread leopoldo
New submission from leopoldo: the code below crash when run on anaconda3 import traits.api as trapi import traitsui.api as trui from traits.api import HasTraits, Str, Range, Enum class Person(HasTraits): name = Str('Jane Doe') age = Range(low=0) gender = Enum('female', 'male')