We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems related to the very old #81 in that certain values (dictionary keys, in our case) are not escaped.
Use of repr() as keys results in apparently no keys. (Web inspector shows that they're being interpreted as HTML.)
repr()
Enter the following in a presented interactive REPL or traceback:
{'<a href="about:blank">Testing</a>': 'value'}
Or, attempt to use the REPR of a class as keys:
{repr(type): 'value'}
This was exceptionally confusing when our plugin registry showed an empty string for every key.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Seems related to the very old #81 in that certain values (dictionary keys, in our case) are not escaped.
Use of
repr()
as keys results in apparently no keys. (Web inspector shows that they're being interpreted as HTML.)MCVE
Enter the following in a presented interactive REPL or traceback:
Or, attempt to use the REPR of a class as keys:
This was exceptionally confusing when our plugin registry showed an empty string for every key.
Screenshot
The text was updated successfully, but these errors were encountered: