Matthew
Matthew
Calling `int()` and `str()` with no arguments returns `0` and `""` respectively, likewise for `bool() == False` and `bytes() == b""`. But to actually call these constructors without arguments is...
Fixes https://github.com/jupyter-widgets/ipywidgets/issues/4007
The list of color names used in validating the color trait contains certain mistakes. https://github.com/jupyter-widgets/ipywidgets/blob/fbc0d6e9cd63727b5951f2bf559f1a5769e4455d/python/ipywidgets/ipywidgets/widgets/trait_types.py#L13C1-L14C1 ```python _color_names = ['aliceblue', 'antiquewhite', 'aqua', 'aquamarine', 'azure', 'beiae', 'bisque', 'black', 'blanchedalmond', 'blue', 'blueviolet', 'brown',...