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
|
||
|---|---|---|
| .. | ||
| commands | ||
| tests | ||
| visitors | ||
| __init__.py | ||
| _cli.py | ||
| _codemod.py | ||
| _command.py | ||
| _context.py | ||
| _dummy_pool.py | ||
| _runner.py | ||
| _testing.py | ||
| _visitor.py | ||