Min RK

Results 1478 comments of Min RK

Summarizing what I think we should do [from the forum](https://discourse.jupyter.org/t/dockerspawner-undocumented-behaviour-remove-false-does-not-replace-existing-image-a-with-new-image-b/8576/2?u=minrk): 1. better document that `remove=False` is really just for testing and requires manual intervention to delete data 2. warn when...

The Widget has no way of knowing that it was given as scientific notation. As far as Python is concerned, `6e12` and `6000000000000.` are perfectly indistinguishable. We could add a...

Looks nice to me, though I would use `.validate` instead of `.valid`, since `.valid` is not a verb. If this works, doesn't that mean that we should be able to...

No, we can't break usage of the current `@validate` name, we would need to use something else. Using a noun doesn't feel right to me, but I guess it's okay.

I see. We'd need to figure out a way to adopt the feature upstream safely, or have traittypes detect whether its additions are redundant, and make it conditional.

To generate rst options, you would need the flat list of configurable classes, and include them all. To pass the configuration to your members, you should make sure to instantiate...

This seems like the right behavior. You have instantiated two singleton instances in the same processes without clearing the singleton. That rightly results in an error because the application singleton...

That's untrue. If subcommand didn't work, it wouldn't be how most Jupyter and IPython commands are implemented today. A subcommand is an alternate application that should be instantiated as the...

> There has to be a way out of this, than incidentally forbidding parent & sub-commands to inherit a common baseclass. There is. We don't forbid subcommands from having a...