diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-10-16 15:12:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-16 15:12:58 (GMT) |
commit | 15ad52fbf607b6ccec44a38a8a32a5f1fad635ee (patch) | |
tree | 242594a0688416f2176373afd1bcee36795e2889 /Misc | |
parent | 4ecd119b007cb766b8bede2dc78b70d29cd932dd (diff) | |
download | cpython-15ad52fbf607b6ccec44a38a8a32a5f1fad635ee.zip cpython-15ad52fbf607b6ccec44a38a8a32a5f1fad635ee.tar.gz cpython-15ad52fbf607b6ccec44a38a8a32a5f1fad635ee.tar.bz2 |
bpo-45489: Update ForwardRef to support | operator. (GH-28991)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-10-16-23-46-39.bpo-45489.QB0rhG.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-10-16-23-46-39.bpo-45489.QB0rhG.rst b/Misc/NEWS.d/next/Library/2021-10-16-23-46-39.bpo-45489.QB0rhG.rst new file mode 100644 index 0000000..3921437 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-10-16-23-46-39.bpo-45489.QB0rhG.rst @@ -0,0 +1,2 @@ +Update :class:`~typing.ForwardRef` to support ``|`` operator. Patch by +Dong-hee Na. |