Jon Dufresne
Jon Dufresne
Thanks for the report. Do you have a complete HTML document that renders correctly in a browser? Or are you expecting this to render as � (replacement character)?
I am not able to reproduce this on the latest master. Perhaps this has been fixed and can be closed.
Thanks for the review. I've modified the README as suggested. Tests are now green.
Since this PR originally went up, there have been new Python releases and now Python 3.4 is EOL. I have updated the test matrix to test all new Pythons.
I think this might have been fixed in 351d9fb11c09bc3f8f32992679c948a253226032.
I think it would be good to add tests similar to the other serializers.
FWIW, I'm in favor of seeing type hints added. Using the comment syntax ensures the code can remain compatible with legacy EOL Pythons.
If you want, you should be able to avoid the `typing` dependency by using the `if False:` trick: ```py if False: from typing import Tuple ``` mypy understands this and...
Thanks for the link and moving the ticket. The docs on that rule read: > [When using a boolean attribute in JSX](https://facebook.github.io/react/docs/jsx-in-depth.html#boolean-attributes), you can set the attribute value to true...
I'd like to throw out another potential case of an unnecessary type conversion: `Object.values(array)`. This is a construct that I have found in my own projects. Once found, I simplify...