RustPython / Parser

MIT License
66 stars 24 forks source link

fix for Lib/test/test_future_stmt/test_future.py: test_annotations #121

Closed hydrogen602 closed 1 month ago

hydrogen602 commented 1 month ago

The test test_annotations in Lib/test/test_future_stmt/test_future.py needs the annotation tuple[str, *types] to print as is, but previously, unparse outputted tuple[(str, *types)]. This corrects that.