aaronayres35
aaronayres35
Running ``` from traits.api import HasTraits, Int, Range class Foo(HasTraits): bar = Int(10) baz = Range(low=0, high=10) def _baz_default(self): print('_baz_default') return 5 if __name__ == '__main__': foo = Foo() print(foo.baz)...
It might be useful to have a short section of documentation describing what ETSConfig is / what it is useful for and how to use it. There is some mention...
Ref: https://github.com/enthought/pyface/pull/866 With traits 6.2 we are explicitly stating in documentation that imports should come from api modules. Because of this I decided to run through pyface for any non...
`defining.rst` in the Predefined Trait Types section seems like a reasonable place. These are frequently used trait types so having a section on how to use them / any gotchas...
**Problem Description** See comment: https://github.com/enthought/chaco/pull/636#issuecomment-816879211 There are many places in chaco where we aren't super consistent about the type being returned by specific methods and this has led to a...
There are a large number of "TODO" sections that need to be completed in the documentation.
Related to #761 Some of the lingering examples are _nearly_ identical to examples shown in the documentation. If thy are kept it would b good to use literalinclude in the...
This issue is meant to keep a laundry list of all the things we want to address regarding the documentation. Feel free to add bullets as you see fit. We...
Related to #438 Pulling the contents of #739 into an issue: This is the current starte of Pan and Zoom tools accross Chaco and Enable (red = in enable): ```...
This is related to #798, but involves going a step further and actually reworking how the tools in chaco work in the first place. This is issue is motivated by...