8000 Mark some types as non-hashable by srittau · Pull Request #3219 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Mark some types as non-hashable #3219

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 3 commits into from
Sep 4, 2019
Merged
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
Add missing type: ignore
  • Loading branch information
srittau committed Sep 3, 2019
commit d50ac2b528e17dbd0c69ea0815d7fd422f649b13
2 changes: 1 addition & 1 deletion third_party/2and3/werkzeug/datastructures.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class TypeConversionDict(Dict[_K, _V]):
@overload
def get(self, key: _K, default: _D, type: Callable[[_V], _R]) -> Union[_R, _D]: ...

class ImmutableTypeConversionDict(ImmutableDictMixin, TypeConversionDict[_K, _V]):
class ImmutableTypeConversionDict(ImmutableDictMixin, TypeConversionDict[_K, _V]): # type: ignore
def copy(self) -> TypeConversionDict[_K, _V]: ...
def __copy__(self) -> ImmutableTypeConversionDict[_K, _V]: ...

Expand Down
0