8000 Make join(None, T) produce Optional[T] in strict-optional by ddfisher · Pull Request #1999 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

Make join(None, T) produce Optional[T] in strict-optional #1999

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 2 commits into from
Aug 8, 2016
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
remove extraneous blank line
  • Loading branch information
ddfisher committed Aug 8, 2016
commit 93b57cfe71bc70598dcd668a842214c4b2d00763
1 change: 0 additions & 1 deletion mypy/join.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ def join_types(s: Type, t: Type) -> Type:
return t.accept(TypeJoinVisitor(s))



class TypeJoinVisitor(TypeVisitor[Type]):
"""Implementation of the least upper bound algorithm.

Expand Down
0