-
Notifications
You must be signed in to change notification settings - Fork 3k
Adding InputStream and OutputStream protocols for open and create return types #4021
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
Changes from 9 commits
73e20b3
34a6179
31f7186
c1a0c9b
4db521f
9a67944
f24c7dc
fe09c26
3ca57a2
16df4ac
d49f50a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,7 @@ deps = | |
| coverage | ||
| mock | ||
| pytest | ||
| typing-extensions | ||
|
||
| setenv = | ||
| COVERAGE_FILE = test-reports/{envname}/.coverage | ||
| PYTEST_ADDOPTS = --junitxml=test-reports/{envname}/junit.xml -vv | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
might pay to put a conditional import here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i.e. try to import from the native 3.8+ version and fallback to extension? I think this could make the typing_extensions optional for 3.8 (not sure if we consider this a big deal).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a great catch, I updated this to: