8000 Compileall rx argument fix by hatal175 · Pull Request #5172 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Compileall rx argument fix #5172

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 11, 2021
Prev Previous commit
Next Next commit
Remove unused import
  • Loading branch information
hatal175 committed Apr 2, 2021
commit 04f2320159e058683e586fef75bb7291e8aca924
2 changes: 1 addition & 1 deletion stdlib/compileall.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys
from _typeshed import AnyPath, _T_contra
from typing import Any, AnyStr, Generic, Optional, Protocol
from typing import Any, AnyStr, Optional, Protocol

if sys.version_info >= (3, 7):
from py_compile import PycInvalidationMode
Expand Down
0