summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2017-11-15 18:30:59 (GMT)
committerYury Selivanov <yury@magic.io>2017-11-15 18:30:59 (GMT)
commit762b9571c9c8c6b036f1bf90140a1d030b3f9a01 (patch)
tree8aacee139aaa773259cc43300b09e911038b7380 /Misc/NEWS.d/next
parentf8a4c03ede6048022f60a58d5a21b278b78a8a16 (diff)
downloadcpython-762b9571c9c8c6b036f1bf90140a1d030b3f9a01.zip
cpython-762b9571c9c8c6b036f1bf90140a1d030b3f9a01.tar.gz
cpython-762b9571c9c8c6b036f1bf90140a1d030b3f9a01.tar.bz2
bpo-32018: Fix inspect.signature repr to follow PEP 8 (#4408)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2017-11-16-02-32-41.bpo-32018.YMQ7Q2.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-16-02-32-41.bpo-32018.YMQ7Q2.rst b/Misc/NEWS.d/next/Library/2017-11-16-02-32-41.bpo-32018.YMQ7Q2.rst
new file mode 100644
index 0000000..aa8a47c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-11-16-02-32-41.bpo-32018.YMQ7Q2.rst
@@ -0,0 +1,2 @@
+inspect.signature should follow PEP 8, if the parameter has an annotation and a
+default value. Patch by Dong-hee Na.