mirror of
https://github.com/Instagram/LibCST.git
synced 2025-12-23 10:35:53 +00:00
* Fix type of evaluated_value on string
This can return bytes if the string is a bytestring, e.g.:
In [1]: import libcst as cst
In [2]: cst.parse_expression('b"foo"').evaluated_value
Out[2]: b'foo'
* Fix type errors from changed signature
|
||
|---|---|---|
| .. | ||
| tests | ||
| __init__.py | ||
| base.py | ||
| deep_equals.py | ||
| expression.py | ||
| internal.py | ||
| module.py | ||
| op.py | ||
| statement.py | ||
| whitespace.py | ||