This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: [typing] PEP 563: Postponed evaluation of annotations: enable it by default in Python 3.11
Type: behavior Stage: patch review
Components: Unicode Versions: Python 3.10
process
Status: open Resolution: postponed
Dependencies: Superseder:
Assigned To: Nosy List: AlexWaygood, Anthony Sottile, BTaskaya, barry, brett.cannon, eric.smith, gousaiyang, gvanrossum, jwilk, levkivskyi, lukasz.langa, methane, miss-islington, pablogsal, serhiy.storchaka, steven.daprano, terry.reedy, veky
Priority: normal Keywords: patch

Created on 2019-10-27 16:07 by vstinner, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 20434 merged BTaskaya, 2020-05-26 16:06
PR 22630 merged BTaskaya, 2020-10-10 10:35
PR 25236 merged gousaiyang, 2021-04-07 00:12
PR 25490 merged pablogsal, 2021-04-20 21:18
PR 25596 merged Anthony Sottile, 2021-04-25 15:08
PR 25602 merged gousaiyang, 2021-04-25 19:12
Messages (40)
msg355476 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-10-27 16:07
The PEP 563: Postponed evaluation of annotations was introduced an opt-in feature using "from __future__ import annotations". It is scheduled to become the default in Python 4.0.

I would prefer to limit the number of incompatible changes in Python 4.0: it should just a "regular" release, with a regular number of incompatible changes. The version number change is going to cause enough troubles...

Would it be possible possible to enable postponed evaluation of annotations either before or after Python 4.0? For example, can we imagine to enable it by default in Python 3.9? If not, what about Python 3.10?

See also the PEP 608 (Coordinated Python release) and bpo-38604 (Schedule Py_UNICODE API removal).
msg355495 - (view) Author: Ivan Levkivskyi (levkivskyi) * (Python committer) Date: 2019-10-27 19:17
IMO 3.10 would be better, since 3.9 would be too soon (it would be like a schedule for a normal deprecation).

Also if we are really doing this, I think it is better to announce this soon.

Also we should try to fix relevant issues related to string annotations (in typing and dataclasses), like https://github.com/python/typing/issues/508, https://github.com/python/typing/issues/574, https://bugs.python.org/issue37838, https://bugs.python.org/issue34776 and https://bugs.python.org/issue37948.
msg355506 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2019-10-27 23:23
We never should have mentioned 4.0 as the target date to make this the
default (and only) behavior -- who knows whether there will ever even be a
Python 4.0? Even 3.10 might be on the early side (assuming we'll switch to
a year-long release cycle per PEP 602 -- we will then make deprecations in
general take two release cycles).

I do agree that we should start the process of deprecating the
non-__future__ behavior here in 3.9. I know of one project with a private
fork of Python (for other reasons) that has made this default.
msg355523 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-10-28 11:03
> We never should have mentioned 4.0 as the target date to make this the
default (and only) behavior

I am fine with modifying __future__ documentation to only modify the "Mandatory" column to remove Python 4.0, and then close this issue:
https://docs.python.org/dev/library/__future__.html

--

But I like the "PEP 563: Postponed evaluation of annotations", IMHO it would be nice to get it as the default behavior :-) It's just a matter of properly organize the transition ;-)
msg355546 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2019-10-28 14:43
You can bring the deprecation schedule up on discourse or python-dev so more folks can let us know whether they'd be okay with 3.9 or 3.10.
msg360830 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-01-28 02:19
I started a thread on typing-sig:
https://mail.python.org/archives/list/typing-sig@python.org/thread/JG4IWHO3TZORNESR6ARXFL6OUZU2BEBX/
msg366634 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2020-04-17 00:46
I personally like 3.10 as the target as that means users had at least 3 years to move to move over. Plus we can put a warning in the What's New for 3.9 about our plans for 3.10.
msg366635 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-04-17 00:50
This issue has been discussed during the Language Summit. A quick poll showed that the majority is in favor of changing the default in Python 3.9.

Lukasz proposed a PEP update to propose to switch the default in Python 3.9:
https://github.com/python/peps/pull/1371/

For me, the unclear part is which projects would be impacted if the default changes?

Someone mentioned attrs, but it seems like attrs is fine:
https://github.com/python-attrs/attrs/issues/288#issuecomment-587265961

In term of workflow, I would _prefer_ to get such incompatible in the very beginning of a devcycle, rather than just before the feature freeze. But I don't think that it's a blocker issue. Technically, changes are allowed until 3.9.0 beta1. Moreover, Lukasz is the 3.9 release manager, the author of the PEP 563 and he is in favor of changing the default in 3.9 :-)
msg369269 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-05-18 16:30
Too bad nobody took any action here after the positive outcome of the discussion at the summit.
msg369301 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-05-18 22:20
> Too bad nobody took any action here after the positive outcome of the discussion at the summit.

I didn't understand it this way. I understood that some people were not 100% comfortable to target 3.9. The question was 3.9 or 3.10. Since the release cycle is now shorter (1 years), only targeting 3.10 is not a big deal ;-)
msg369303 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2020-05-18 22:26
We'll make this an announced 3.10 feature early on. The discussion at the Summit wasn't as clear cut to me: 35% of participants would rather see this default later than 3.9.
msg370000 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-05-26 15:16
Is there anyone interested to implement this change in Python 3.10?
msg370020 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2020-05-26 17:24
I opened the PR 20434 as draft, but from what I understand, there is going to be some breakage (on our test suite). I'll try to narrow it down (currently ~4 tests instead of ~20) but I dont want to prevent anyone else from working on this, so feel free to ignore my PR if you have a working test suite with a low breakage level.
msg370028 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2020-05-26 20:27
After trying to complete a patch, there are a few issues that immediately showed itself (and this might lead to not to do this in 3.10, I dont know);

First one is double-forward-ref, which is usage of string-annotations when there is postponed evaluatation of annotations:
>>> import typing
>>> from __future__ import annotations
>>> def x(a: 'int'): pass
... 
>>> typing.get_type_hints(x)
{'a': ForwardRef('int')}

If we make annoatations feature default, this would be default behavior. The solution would be a workaround to the compiler;
static int
compiler_visit_annexpr(struct compiler *c, expr_ty annotation)
{
    if (annotation->kind == Constant_kind && PyUnicode_CheckExact(annotation->v.Constant.value)) {
        PyObject *text = annotation->v.Constant.value;
        Py_INCREF(text);
        ADDOP_LOAD_CONST_NEW(c, text);
    } else {
        ADDOP_LOAD_CONST_NEW(c, _PyAST_ExprAsUnicode(annotation));
    }
    return 1;
}
But I am not sure if this is too silly or not. 

The second problem is `inspect.signature`. If we don't resolve annotations there and continue it is definitely going to break some code. If we resolve, that would mean that annotations must able to point something real (and this might not be the real case if the user uses a string annotation etc.) and will break code. (both tried and both breaks different modules on the stdlib tests)

The third problem is various dataclass hacks. Like `_type_{field.name}` etc. annotations and how ClassVar/InitVar parsed.

There are also some little parts that need to change. 

Any thoughts on these issues?
msg370031 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-05-26 20:45
> The second problem is `inspect.signature`. If we don't resolve annotations there and continue it is definitely going to break some code.

Would you mind to elaborate why would it break some code? Consumers of annotations should already be prepared to get directly types or strings, no?

> If we resolve, that would mean that annotations must able to point something real (and this might not be the real case if the user uses a string annotation etc.) and will break code. (both tried and both breaks different modules on the stdlib tests)

I expect that resolving has an impact on performance, whereas the caller may not use annotations at all but only cares of the number of parameters or their name.

It would be resonable to not resolve annotations in signature() by default. If someone cares, maybe a new parameter can be added to resolve annotations?
msg370035 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-05-26 22:18
- Double forward ref: IMO this can be resolved in the get_type_hints() functions. (Łukasz do you agree?)

- inspect.signature(): Maybe this could switch to using typing.get_type_hints()? Then again if performance is important here maybe we cannot change anything.

- dataclasses hacks: these should just be resolved.

Another thought: maybe some of these issues can be considered bugs in 3.9 as well, and we should fix them there too? That might help us decide the right path forward. After all we should really encourage people to start using `from __future__ import annotations` in their code, to help them get ready for these issues in 3.10.

Final thought: I know at least the Dropbox client team, and possibly also Instagram, has already turned on `from __future__ import annotations` by default in their local fork of Python. Maybe we can ask them if they ever felt the need to change inspect.signature or typing.get_type_hints.
msg370037 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2020-05-26 23:13
To my knowledge, dataclasses works with `from __future__ import annotations`. If there are specific examples of problems, I'd like to hear about it: please open a separate issue.

There is a hack (discussed at PyCon 2018 with all of the relevant players) where it avoids importing typing to look at typing.ClassVar, but I think that code is all correct. Maybe I should just bite the bullet and import typing, since I believe importing it is faster than it used to be.
msg370188 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2020-05-28 10:51
From now on, should typing.get_type_hints automatically resolve arguments too? An example would be this;

import typing
T = typing.TypeVar("T")
class Loop(typing.Generic[T]):
    subloop: typing.Final["Loop[int]"]
print(typing.get_type_hints(Loop))
>>> {'subloop': typing.Final[__main__.Loop[int]]}
If we run the same code under future annotations
>>> {'subloop': typing.Final[ForwardRef('Loop[int]')]}
msg370214 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-05-28 14:02
I think in general it is more insightful to discuss the behavior of get_type_hints() given specific things in annotations.

We generally don't write forward refs inside forward refs, like "SomeClass['int']". So maybe that code was wrong? Where did you find it?
msg370220 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2020-05-28 14:31
An example would be this https://github.com/python/cpython/blob/24bddc1b3b58f6899b2d412e51b37f68536e4fe2/Lib/test/test_typing.py#L2744-L2745. Either I can change tests in order to reflect now everything is a forward ref by default
class Loop:
    attr: Final['Loop']
to
class Loop:
    attr: Final[Loop]
or resolve everything on get_type_hints.
msg370232 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-05-28 15:47
There will still be a lot of code written that way, because people need compatibility with earlier versions of Python. So I think it should be fixed in get_type_hints().
msg375177 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2020-08-11 14:29
Issue 41314 changed the __future__ annotations default version to 3.10.  3.10.0a1 is scheduled for next Oct 5, less than 2 months from now.  It would be good if PR 20434 were merged before that.
msg377783 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-10-01 22:36
> Issue 41314 changed the __future__ annotations default version to 3.10.  3.10.0a1 is scheduled for next Oct 5, less than 2 months from now.  It would be good if PR 20434 were merged before that.

Python 3.9.0 final is also around the corner. Any update on this issue?
msg378133 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2020-10-06 20:02
@gvanrossum should I draft a patch to convert this
inspect.signature(callable, *, follow_wrapped=True) (and also things like inspect.Signature.from_callable) into inspect.signature(callable, *, follow_wrapped=True, globalns=None, localns=None) in order to pass them to get_type_hints (for resolving in different namespaces)?
msg378134 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-10-06 20:03
New changeset 044a1048ca93d466965afc027b91a5a9eb9ce23c by Batuhan Taskaya in branch 'master':
bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)
https://github.com/python/cpython/commit/044a1048ca93d466965afc027b91a5a9eb9ce23c
msg378135 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-10-06 20:06
I'm marking this fixed, but there are some subtle edge cases. That's what alpha releases are for.

@BTaskaya, adding those arguments to various inspect functions sounds like a nice thing to do. You could either open a new issue or just reference this (closed) issue in your PR -- up to you.
msg378139 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-10-06 23:22
Good! I'm happy to see yet another "Python 4.0 change" going away :-) Let's make "Python 4.0" as compatible as possible ;-)
msg378374 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-10-10 10:01
test_grammar and test_pydoc became failed on my machine until I removed all .pyc files. We need to bump the magic number for .pyc files.
msg378416 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-10-10 22:19
New changeset 22220ae216b11644b23511c6287a52e7d28aeb9f by Batuhan Taskaya in branch 'master':
bpo-38605: bump the magic number for 'annotations' future (#22630)
https://github.com/python/cpython/commit/22220ae216b11644b23511c6287a52e7d28aeb9f
msg390399 - (view) Author: miss-islington (miss-islington) Date: 2021-04-07 05:02
New changeset 1be456ae9d53bb1cba2b24fc86175c282d1c2169 by Saiyang Gou in branch 'master':
bpo-38605: Update "Future statements" docs since PEP 563 is always enabled (GH-25236)
https://github.com/python/cpython/commit/1be456ae9d53bb1cba2b24fc86175c282d1c2169
msg391512 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2021-04-21 11:41
New changeset b0544ba77cf86074fb1adde00558c67ca75eeea1 by Pablo Galindo in branch 'master':
bpo-38605: Revert making 'from __future__ import annotations' the default (GH-25490)
https://github.com/python/cpython/commit/b0544ba77cf86074fb1adde00558c67ca75eeea1
msg391515 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-04-21 12:18
> New changeset b0544ba77cf86074fb1adde00558c67ca75eeea1 by Pablo Galindo in branch 'master':

Copy of the NEWS entry:

Revert making ``from __future__ import annotations`` the default. This follows
the Steering Council decision to postpone PEP 563 changes to at least Python
3.11. See the original email for more information regarding the decision:
https://mail.python.org/archives/list/python-dev@python.org/thread/CLVXXPQ2T2LQ5MP2Y53VVQFCXYWQJHKZ/.
Patch by Pablo Galindo.
msg391700 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2021-04-23 15:24
I haven't followed this precisely, but I recall that when we first made PEP 563 the default, we had to fix a number of bugs in various library modules (e.g. inspect) that were only apparent when `from __future__ import annotations` was used. I hope we're not throwing away those bugfixes. Hopefully Batuhan has a recollection of what I am thinking of, there was some significant delay while we figured out what to do about some of these.
msg391732 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2021-04-23 20:35
> Hopefully Batuhan has a recollection of what I am thinking of, there was some significant delay while we figured out what to do about some of these.

The major one that I'd recall is that inspect.signature() just uses whatever is in __annotations__ instead of resolving those. Now that __future__.annotations is not the default one, we can add a new option named 'resolve_annotations' and call typing.get_type_hints when activated. Here is a quick demo;

from __future__ import annotations

import inspect

def foo(a: int, b: int) -> str:
    ...

def _get_annotations(func, **signature_opts):
    signature = inspect.signature(func, **signature_opts)
    return {
        param.name: param.annotation
        for param in signature.parameters.values()  
    }

print('bare: ', _get_annotations(foo))
print('annotations resolved: ', _get_annotations(foo, resolve_annotations=True))


bare: {'a': 'int', 'b': 'int'}
annotations resolved: {'a': <class 'int'>, 'b': <class 'int'>}

This would be a clear feature for both PEP 563 users + people who are still using string annotations mixed with normal ones. What do you think Guido?
msg391755 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2021-04-24 03:38
I don't like adding a flag.  In the PEP-563-by-default world we didn't need a flag.  Perhaps once Larry implements inspect.get_annotations() (issue43817) we can make inspect.signature() always call that?
msg391869 - (view) Author: miss-islington (miss-islington) Date: 2021-04-25 19:49
New changeset f84f1b5c638eeb6e13c287fe5ebf3a7d2fdb60e9 by Saiyang Gou in branch 'master':
bpo-38605: Update __future__ module doc as `annotations` is now "mandatory in 3.11" (GH-25602)
https://github.com/python/cpython/commit/f84f1b5c638eeb6e13c287fe5ebf3a7d2fdb60e9
msg394114 - (view) Author: Vedran Čačić (veky) * Date: 2021-05-21 12:48
May I ask, is this going forward? I installed 3.11-dev, it's not there (though __future__ claims it should be). I understand if it isn't done yet, just want to know if there's risk it will be postponed again (or even given up).
msg394115 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2021-05-21 12:53
> May I ask, is this going forward? I installed 3.11-dev, it's not there (though __future__ claims it should be). I understand if it isn't done yet, just want to know if there's risk it will be postponed again (or even given up).


We are still waiting a ruling on PEP 649. If it gets rejected, and no more ideas arises (before beta cut for 3.11), I guess we could move on and resolve this issue again.
msg404129 - (view) Author: Steven D'Aprano (steven.daprano) * (Python committer) Date: 2021-10-17 05:47
Now that we're in 3.11, people are starting to notice that stringy annotations are not the default (see #45499 for example).

What can we do to get PEP 649 moving forward?
msg404130 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-10-17 07:28
I think it would help if we could enable some future feature globally by command line option or environment variable, without modifying all source files. It would allow users to quickly test their code base for compatibility with future changes. The problem currently is that nobody bothers to add "from __future__ import ...", so we have surprises every time when try to make it by default.

A tool which automatically adds or removes "from __future__ import ..." in files could help too.
History
Date User Action Args
2022-04-11 14:59:22adminsetgithub: 82786
2022-02-07 11:12:54jwilksetnosy: + jwilk
2021-11-04 14:17:28eryksunsetmessages: - msg405693
2021-11-04 14:17:12eryksunsetnosy: + gvanrossum, barry, brett.cannon, terry.reedy, eric.smith, steven.daprano, methane, lukasz.langa, serhiy.storchaka, veky, levkivskyi, Anthony Sottile, pablogsal, miss-islington, BTaskaya, gousaiyang, AlexWaygood, - vstinner, ezio.melotti, ahmedsayeed1982

versions: + Python 3.10, - Python 3.8
2021-11-04 12:09:31ahmedsayeed1982setversions: + Python 3.8, - Python 3.10
nosy: + ezio.melotti, vstinner, ahmedsayeed1982, - gvanrossum, barry, brett.cannon, terry.reedy, eric.smith, steven.daprano, methane, lukasz.langa, serhiy.storchaka, veky, levkivskyi, Anthony Sottile, pablogsal, miss-islington, BTaskaya, gousaiyang, AlexWaygood

messages: + msg405693

components: + Unicode, - Interpreter Core
2021-10-17 08:48:32AlexWaygoodsetnosy: + AlexWaygood
2021-10-17 07:28:36serhiy.storchakasetmessages: + msg404130
2021-10-17 05:47:50steven.dapranosetnosy: + steven.daprano
messages: + msg404129
2021-05-21 12:53:50BTaskayasetmessages: + msg394115
2021-05-21 12:48:39vekysetnosy: + veky
messages: + msg394114
2021-04-27 14:22:08vstinnersetnosy: - vstinner
2021-04-25 19:49:50miss-islingtonsetmessages: + msg391869
2021-04-25 19:12:59gousaiyangsetpull_requests: + pull_request24318
2021-04-25 15:08:23Anthony Sottilesetnosy: + Anthony Sottile

pull_requests: + pull_request24316
stage: resolved -> patch review
2021-04-24 03:38:51gvanrossumsetmessages: + msg391755
2021-04-23 20:35:29BTaskayasetmessages: + msg391732
2021-04-23 15:24:04gvanrossumsetmessages: + msg391700
2021-04-21 12:18:51vstinnersetmessages: + msg391515
2021-04-21 12:12:11vstinnersettitle: [typing] PEP 563: Postponed evaluation of annotations: enable it by default in Python 3.10 -> [typing] PEP 563: Postponed evaluation of annotations: enable it by default in Python 3.11
2021-04-21 11:41:23pablogsalsetmessages: + msg391512
2021-04-20 21:22:15pablogsalsetstatus: closed -> open
resolution: fixed -> postponed
2021-04-20 21:18:26pablogsalsetnosy: + pablogsal

pull_requests: + pull_request24214
2021-04-07 05:02:28miss-islingtonsetnosy: + miss-islington
messages: + msg390399
2021-04-07 00:12:22gousaiyangsetnosy: + gousaiyang

pull_requests: + pull_request23974
2020-10-10 22:19:53gvanrossumsetmessages: + msg378416
2020-10-10 10:35:37BTaskayasetpull_requests: + pull_request21607
2020-10-10 10:01:45serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg378374
2020-10-06 23:22:54vstinnersetmessages: + msg378139
2020-10-06 20:06:36gvanrossumsetstatus: open -> closed
resolution: fixed
messages: + msg378135

stage: patch review -> resolved
2020-10-06 20:03:29gvanrossumsetmessages: + msg378134
2020-10-06 20:02:12BTaskayasetmessages: + msg378133
2020-10-01 22:36:47vstinnersetnosy: + vstinner
messages: + msg377783
2020-08-11 14:29:45terry.reedysetnosy: + terry.reedy
messages: + msg375177
2020-08-02 01:23:39methanesetnosy: + methane
2020-05-28 15:47:53gvanrossumsetmessages: + msg370232
2020-05-28 14:41:50vstinnersetnosy: - vstinner
2020-05-28 14:31:04BTaskayasetmessages: + msg370220
2020-05-28 14:02:42gvanrossumsetmessages: + msg370214
2020-05-28 10:51:15BTaskayasetmessages: + msg370188
2020-05-26 23:13:14eric.smithsetmessages: + msg370037
2020-05-26 22:18:57gvanrossumsetmessages: + msg370035
2020-05-26 20:45:55vstinnersetmessages: + msg370031
2020-05-26 20:27:06BTaskayasetmessages: + msg370028
2020-05-26 17:24:25BTaskayasetmessages: + msg370020
2020-05-26 17:21:47BTaskayasetmessages: - msg370003
2020-05-26 16:06:27BTaskayasetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request19691
2020-05-26 15:42:15BTaskayasetmessages: + msg370003
2020-05-26 15:16:59vstinnersetversions: + Python 3.10
2020-05-26 15:16:53vstinnersetmessages: + msg370000
2020-05-18 22:26:31lukasz.langasetmessages: + msg369303
2020-05-18 22:20:54vstinnersetmessages: + msg369301
2020-05-18 16:30:06gvanrossumsetversions: - Python 3.9
messages: + msg369269

components: + Interpreter Core, - Library (Lib)
type: behavior
stage: needs patch
2020-05-18 15:40:30vstinnersettitle: [typing] PEP 563: Postponed evaluation of annotations: enable it by default before Python 4.0 -> [typing] PEP 563: Postponed evaluation of annotations: enable it by default in Python 3.10
2020-04-17 06:49:29BTaskayasetnosy: + BTaskaya
2020-04-17 00:50:37vstinnersetmessages: + msg366635
2020-04-17 00:46:45brett.cannonsetnosy: + brett.cannon
messages: + msg366634
2020-01-28 02:19:04vstinnersetmessages: + msg360830
2019-10-28 17:06:14barrysetnosy: + barry
2019-10-28 14:43:52gvanrossumsetmessages: + msg355546
2019-10-28 11:03:22vstinnersetmessages: + msg355523
2019-10-27 23:23:41gvanrossumsetmessages: + msg355506
2019-10-27 22:51:45eric.smithsetnosy: + eric.smith
2019-10-27 19:17:48levkivskyisetnosy: + gvanrossum
messages: + msg355495
2019-10-27 16:16:48xtreaksetnosy: + levkivskyi
2019-10-27 16:07:10vstinnercreate