Skip to content

More detailed checking of type objects in stubtest #18251

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

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add a test case based on argparse.ArgumentParser
  • Loading branch information
tungol committed Dec 8, 2024
commit 6dcb76022ab4ac3382cf4e456f5a79d9d5074867
25 changes: 25 additions & 0 deletions mypy/test/teststubtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2401,6 +2401,31 @@ def func2() -> None: ...
error="func2",
)

@collect_cases
def test_type_default_protocol(self) -> Iterator[Case]:
yield Case(
stub="""
from typing import Protocol

class _FormatterClass(Protocol):
def __call__(self, *, prog: str) -> HelpFormatter: ...

class ArgumentParser:
def __init__(self, formatter_class: _FormatterClass = ...) -> None: ...

class HelpFormatter:
def __init__(self, prog: str, indent_increment: int = 2) -> None: ...
""",
runtime="""
class HelpFormatter:
def __init__(self, prog, indent_increment=2) -> None: ...

class ArgumentParser:
def __init__(self, formatter_class=HelpFormatter): ...
""",
error=None,
)


def remove_color_code(s: str) -> str:
return re.sub("\\x1b.*?m", "", s) # this works!
Expand Down
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy