From 207294f77393e8f067da6964296de89a6ba35803 Mon Sep 17 00:00:00 2001 From: Lincoln <71312724+Lincoln-developer@users.noreply.github.com> Date: Fri, 8 Nov 2024 16:10:00 +0300 Subject: [PATCH] Update developer-workflow/cpython-deprecation-workflow.rst Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> --- developer-workflow/cpython-deprecation-workflow.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/developer-workflow/cpython-deprecation-workflow.rst b/developer-workflow/cpython-deprecation-workflow.rst index 7b10461e8..9ffbfb808 100644 --- a/developer-workflow/cpython-deprecation-workflow.rst +++ b/developer-workflow/cpython-deprecation-workflow.rst @@ -20,8 +20,9 @@ Start by creating a GitHub issue to propose the deprecation: * Clearly describe the feature and why deprecation is needed. * Encourage community feedback and suggestions. -3. Deprecation Implementation ------------------------------ +Deprecation implementation +-------------------------- + Once approved: * **Raise a Warning**: Use :func:`warnings.warn` with :exc:`DeprecationWarning` for typical cases.