-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Implement 3.7 features #1965
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
Comments
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 18, 2018
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 18, 2018
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 18, 2018
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 18, 2018
References: - https://docs.python.org/dev/library/datetime.html#datetime.datetime.fromisoformat - https://docs.python.org/dev/library/crypt.html#crypt.mksalt - https://docs.python.org/dev/library/contextlib.html#contextlib.AbstractAsyncContextManager - https://docs.python.org/dev/library/calendar.html#calendar.HTMLCalendar.cssclasses - https://docs.python.org/dev/library/binascii.html#binascii.b2a_uu Part of python#1965.
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 18, 2018
References: - https://docs.python.org/dev/library/datetime.html#datetime.datetime.fromisoformat - https://docs.python.org/dev/library/crypt.html#crypt.mksalt - https://docs.python.org/dev/library/contextlib.html#contextlib.AbstractAsyncContextManager - https://docs.python.org/dev/library/calendar.html#calendar.HTMLCalendar.cssclasses - https://docs.python.org/dev/library/binascii.html#binascii.b2a_uu Part of python#1965.
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 18, 2018
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 18, 2018
This was referenced Mar 18, 2018
JelleZijlstra
added a commit
that referenced
this issue
Mar 21, 2018
JelleZijlstra
added a commit
that referenced
this issue
Mar 21, 2018
JelleZijlstra
added a commit
that referenced
this issue
Mar 22, 2018
References: - https://docs.python.org/dev/library/datetime.html#datetime.datetime.fromisoformat - https://docs.python.org/dev/library/crypt.html#crypt.mksalt - https://docs.python.org/dev/library/contextlib.html#contextlib.AbstractAsyncContextManager - https://docs.python.org/dev/library/calendar.html#calendar.HTMLCalendar.cssclasses - https://docs.python.org/dev/library/binascii.html#binascii.b2a_uu Part of #1965.
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 28, 2018
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 28, 2018
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 28, 2018
JelleZijlstra
added a commit
that referenced
this issue
Mar 29, 2018
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 29, 2018
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Mar 29, 2018
JelleZijlstra
added a commit
that referenced
this issue
Mar 29, 2018
This was referenced Apr 4, 2018
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Apr 4, 2018
Last part of python#1965.
JelleZijlstra
added a commit
to JelleZijlstra/typeshed
that referenced
this issue
Apr 4, 2018
Last part of python#1965.
Merged
gvanrossum
pushed a commit
that referenced
this issue
Apr 6, 2018
python/cpython@8f6b344 and https://bugs.python.org/issue28682. I could not use the _PathLike alias because that includes bytes. Part of #1965.
All the PRs have been merged, thanks @gvanrossum. |
You're welcome! Hopefully this will get some testing in next week's release. (Sadly we don't have time yet to write a dataclasses plugin.) |
yedpodtrzitko
pushed a commit
to yedpodtrzitko/typeshed
that referenced
this issue
Jan 23, 2019
yedpodtrzitko
pushed a commit
to yedpodtrzitko/typeshed
that referenced
this issue
Jan 23, 2019
yedpodtrzitko
pushed a commit
to yedpodtrzitko/typeshed
that referenced
this issue
Jan 23, 2019
References: - https://docs.python.org/dev/library/datetime.html#datetime.datetime.fromisoformat - https://docs.python.org/dev/library/crypt.html#crypt.mksalt - https://docs.python.org/dev/library/contextlib.html#contextlib.AbstractAsyncContextManager - https://docs.python.org/dev/library/calendar.html#calendar.HTMLCalendar.cssclasses - https://docs.python.org/dev/library/binascii.html#binascii.b2a_uu Part of python#1965.
yedpodtrzitko
pushed a commit
to yedpodtrzitko/typeshed
that referenced
this issue
Jan 23, 2019
yedpodtrzitko
pushed a commit
to yedpodtrzitko/typeshed
that referenced
this issue
Jan 23, 2019
yedpodtrzitko
pushed a commit
to yedpodtrzitko/typeshed
that referenced
this issue
Jan 23, 2019
Last part of python#1965.
yedpodtrzitko
pushed a commit
to yedpodtrzitko/typeshed
that referenced
this issue
Jan 23, 2019
python/cpython@8f6b344 and https://bugs.python.org/issue28682. I could not use the _PathLike alias because that includes bytes. Part of python#1965.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Let's make sure we have all the new features that will go into 3.7 (going off https://docs.python.org/dev/whatsnew/3.7.html).
__getattr__
) doesn't affect typeshed, but may need implementation work in typecheckersbreakpoint()
) was implemented in PEP 553 and PEP 564 #1846.from __future__ import annotations
) was implemented in [stdlib/2and3/__future__] Add PEP 563annotations
#1880.time_ns
and similar) was implemented in PEP 553 and PEP 564 #1846.monetary
argument (https://bugs.python.org/issue10379)The text was updated successfully, but these errors were encountered: