Ryan Morshead
Ryan Morshead
the `run()` function contains valuable logic for kicking off the `StatReloader` and the `Multiprocess` workers, however it does not give you access to the server instance before starting and subsequently...
Python 3.8 is out and is being widely adopted by the scientific community. See [NEP-29](https://numpy.org/neps/nep-0029-deprecation_policy.html) for Numpy's recommend Python and Numpy version support, which is used by other large projects...
# Summary I think it would be useful to include a top-level `importSource` attribute to the VDOM spec: ```python { "importSource": { "source": string, "fallback": string, } } ``` The...
What if you could load React components that were registered as "plugins" using `vdom`... ```json { "tagName": "MyCoolPlugin", "attributes": { "data-stuff-my-plugin-uses": "something-super-cool" }, } ``` Assuming you had some sort...
Closes: #645 It looks like #645 might actually be a slightly bigger problem than it would initially seem. You can't even do `"{'tag'}"` and get it to work because the...
We could probably significantly improve performance if we added `__slots__` to `HasTraits` and common `TraitType`. We'd just have to include `__dict__` as one of the slots to maintain backward compatibility.
Declaring traits as classes instead of instances is deprecated following https://github.com/ipython/traitlets/pull/51. We should add this to the migration notes: http://traitlets.readthedocs.io/en/stable/migration.html
We raise here: ``` python class A(HasTraits): inst = Instance(Foo) A().inst ``` But not here: ``` python class A(HasTraits): inst = Instance(Foo, allow_none=True) A().inst ``` This seems magical, and is...
A notification which catches a `"change"` should also intuitively catch a `"special change"`. I see two ways to accomplish this kind of behavior: 1. Split type strings at each `"...
The last release of Pydocstyle was in May of last year. Is there a plan to cut another release sometime soon?