QuantEcon.py
QuantEcon.py copied to clipboard
repeated names in directory
There are a lot of repeated names in the list of attributes, filename and then class or function name:

e.g., compute_fixed_point and compute_pf, ECDF and ecdf. We don't really need the module names here. Should they be hidden, perhaps? What's the convention?
numba also appears as an attribute of the library...
Hey @jstac I am not sure what the convention is here. I will have a look at pandas or another major project to see what style they adopt. We can adopt a style of prepending _ to module names and external packages on import. That hides them to introspection.
@jstac @mmcky Please let me know your reviews regarding #601