Files
typeshed/stubs
Alex Waygood 658b6e7de0 PyInstaller: Fix DeprecationWarning when parsing the stub using ast.parse() (#9112)
```python
>>> import ast, warnings
>>> warnings.filterwarnings("always")
>>> with open("typeshed/stubs/pyinstaller/pyi_splash/__init__.pyi", encoding="utf-8") as file:
...     source = file.read()
...
>>> ast.parse(source)
<unknown>:11: DeprecationWarning: invalid escape sequence '\u'
<ast.Module object at 0x0000027EAF6D3AF0>
```

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
2022-11-06 14:50:38 -08:00
..
2022-09-26 17:14:33 -07:00
2022-10-12 09:35:12 +01:00
2022-09-12 18:32:47 +01:00
2022-11-03 07:38:51 -07:00
2022-09-26 17:14:33 -07:00
2022-10-21 18:04:22 +01:00
2022-06-18 16:27:10 +02:00
2022-11-01 12:37:21 +01:00
2022-08-05 08:55:36 +02:00
2022-10-03 09:33:15 -07:00
2022-07-19 19:15:20 -07:00
2022-11-03 15:32:10 +00:00
2022-11-04 09:16:59 +00:00