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
__str__
__repr__
Sequence
The Sequence.__repr__ currently prints a human-readable summary of an instance as a "Sequence with $n$ segments".
Sequence.__repr__
This is what a __str__ representation should do, but there isn't one currently.
eval
reprlib
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The$n$ segments".
Sequence.__repr__
currently prints a human-readable summary of an instance as a "Sequence withThis is what a
__str__
representation should do, but there isn't one currently.__str__
method__repr__
method to be closer to something we could pass to aneval
method. Don't forget thereprlib
exists in the standard library.The text was updated successfully, but these errors were encountered: