8000 bpo-19072: Make @classmethod support chained decorators by berkerpeksag · Pull Request #8405 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-19072: Make @classmethod support chained decorators #8405

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Aug 24, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix markup
  • Loading branch information
rhettinger committed Aug 24, 2019
commit 4d3e4131b9cc4e4ed5334019f9b461c9ba1b0cf0
4 changes: 2 additions & 2 deletions Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ are always available. They are listed here in alphabetical order.
For more information on class methods, see :ref:`types`.

.. versionchanged:: 3.9
Class methods can now wrap other :term:`descriptors <descriptor>` such as
:func:`property`.
Class methods can now wrap other :term:`descriptors <descriptor>` such as
:func:`property`.

.. function:: compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)

Expand Down
0