mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
stdlib: Use pos-only parameters for many Protocols (#10985)
This commit is contained in:
@@ -6,7 +6,7 @@ from typing import Any, Protocol
|
||||
__all__ = ["compile_dir", "compile_file", "compile_path"]
|
||||
|
||||
class _SupportsSearch(Protocol):
|
||||
def search(self, string: str) -> Any: ...
|
||||
def search(self, __string: str) -> Any: ...
|
||||
|
||||
if sys.version_info >= (3, 10):
|
||||
def compile_dir(
|
||||
|
||||
Reference in New Issue
Block a user