diff options
author | Samuel Colvin <samcolvin@gmail.com> | 2019-10-13 11:45:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-10-13 11:45:36 (GMT) |
commit | 793cb85437299a3da3d74fe65480d720af330cbb (patch) | |
tree | af1f297dba6baeb54bdb6838e840f79604d39b6d /Misc | |
parent | 140a7d1f3579e778656a6b6bfad72489e9870a4d (diff) | |
download | cpython-793cb85437299a3da3d74fe65480d720af330cbb.zip cpython-793cb85437299a3da3d74fe65480d720af330cbb.tar.gz cpython-793cb85437299a3da3d74fe65480d720af330cbb.tar.bz2 |
bpo-38431: Fix __repr__ method of InitVar to work with typing objects. (GH-16702)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-10-10-16-53-00.bpo-38431.d5wzNp.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-10-16-53-00.bpo-38431.d5wzNp.rst b/Misc/NEWS.d/next/Library/2019-10-10-16-53-00.bpo-38431.d5wzNp.rst new file mode 100644 index 0000000..c2f860d --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-10-16-53-00.bpo-38431.d5wzNp.rst @@ -0,0 +1 @@ +Fix ``__repr__`` method for :class:`dataclasses.InitVar` to support typing objects, patch by Samuel Colvin. |