Ilya Kamen

Results 59 comments of Ilya Kamen

Hi, I agree that would be a desirable feature. But the effort to implement it might also be high; will update the issue once I have progress or at least...

Let's exclude `integration/samples_in/`, `integration/expected_out/`, `integration/expected_out_single_line/`

@cclauss could you exclude the folders: > integration/samples_in/, integration/expected_out/, integration/expected_out_single_line/

Hi, thanks for your suggestion. I think it's most important not to get in conflict with some tool like black that might split strings on multiple lines, creating string segments...

Hi, thanks for the bug report! This is likely to share root cause with #55 - might take some time before this is solved.

Hi, thanks for this suggestion. TLDR: I'm open to having this in flynt, but unlikely to find time to implement it as of now. Unless it's provably safe, this should...

Hey Nodd, thanks for the bug report. here is an example showing why this is difficult: ``` import ast s_in = """x = 'a\xA0%s' % a""" s = ast.parse(s_in).body[0].value.left.s print(f"{s}")...

Also skipping strings with escaped unicode appears not trivial: https://stackoverflow.com/questions/45651565/how-to-determine-if-a-string-is-escaped-unicode

Hi, thanks for reporting the bug. Similarly to #55 the problem lays in the symbols being gone from the parsed expression (escaping the newline has the specific purpose of removing...

Not sure I've installed it right, but it fails to find stubs for mujoco: ``` (venv) ~/P/Mujee $ mypy -c "import mujoco" :1: error: Cannot find implementation or library stub...