summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2019-08-24 22:37:25 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-08-24 22:37:25 (GMT)
commit805f8f9afea116c5d4d000570e3d02ae84502f43 (patch)
treefcce9d4e198f5788b6cc5befc349c988d9c05c3c /Misc
parent0dfc025cccc5adf4f209e2421c7686b1e637eeae (diff)
downloadcpython-805f8f9afea116c5d4d000570e3d02ae84502f43.zip
cpython-805f8f9afea116c5d4d000570e3d02ae84502f43.tar.gz
cpython-805f8f9afea116c5d4d000570e3d02ae84502f43.tar.bz2
bpo-19072: Make @classmethod support chained decorators (GH-8405)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-07-23-13-09-54.bpo-19072.Gc59GS.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-07-23-13-09-54.bpo-19072.Gc59GS.rst b/Misc/NEWS.d/next/Core and Builtins/2018-07-23-13-09-54.bpo-19072.Gc59GS.rst
new file mode 100644
index 0000000..1d27789
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-07-23-13-09-54.bpo-19072.Gc59GS.rst
@@ -0,0 +1,3 @@
+The :class:`classmethod` decorator can now wrap other descriptors
+such as property objects. Adapted from a patch written by Graham
+Dumpleton.