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 | ||
| gather.py | ||
| gen_matcher_classes.py | ||
| gen_type_mapping.py | ||
| gen_visitor_functions.py | ||
| generate.py | ||
| transforms.py | ||