File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -515,6 +515,7 @@ NewStr = NewType("NewStr", str)
515515def do_count(s: str) -> int:
516516 return s.count("x") # type: ignore [attr-defined]
517517[builtins fixtures/string.pyi]
518+ [typing fixtures/typing-full.pyi]
518519[out]
519520def do_count(s):
520521 s, r0 :: str
@@ -536,6 +537,7 @@ NewStr = NewType("NewStr", str)
536537def do_count(s: str, start: int) -> int:
537538 return s.count("x", start) # type: ignore [attr-defined]
538539[builtins fixtures/string.pyi]
540+ [typing fixtures/typing-full.pyi]
539541[out]
540542def do_count(s, start):
541543 s :: str
@@ -559,6 +561,7 @@ NewStr = NewType("NewStr", str)
559561def do_count(s: str, start: int, end: int) -> int:
560562 return s.count("x", start, end) # type: ignore [attr-defined]
561563[builtins fixtures/string.pyi]
564+ [typing fixtures/typing-full.pyi]
562565[out]
563566def do_count(s, start, end):
564567 s :: str
You can’t perform that action at this time.
0 commit comments