[Python-checkins] cpython: Move argument clinic into its own section, like the other PEPs.

r.david.murray python-checkins at python.org
Tue Dec 24 18:37:52 CET 2013


http://hg.python.org/cpython/rev/9dd2c6d9872a
changeset:   88168:9dd2c6d9872a
user:        R David Murray <rdmurray at bitdance.com>
date:        Tue Dec 24 12:23:56 2013 -0500
summary:
  Move argument clinic into its own section, like the other PEPs.

files:
  Doc/whatsnew/3.4.rst |  35 ++++++++++++++++++++-----------
  1 files changed, 22 insertions(+), 13 deletions(-)


diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -999,6 +999,28 @@
 the PEP does not alter any existing CPython APIs.
 
 
+.. _whatsnew-pep-436:
+
+PEP 436: Argument Clinic
+------------------------
+
+"Argument Clinic" (:pep:`436`) is now part of the CPython build process
+and can be used to simplify the process of defining and maintaining
+accurate signatures for builtins and standard library extension modules
+implemented in C.
+
+.. note::
+   The Argument Clinic PEP is not fully up to date with the state of the
+   implementation. This has been deemed acceptable by the release manager
+   and core development team in this case, as Argument Clinic will not
+   be made available as a public API for third party use in Python 3.4.
+
+.. seealso::
+
+   :pep:`436` - The Argument Clinic DSL
+       PEP written and implemented by Larry Hastings.
+
+
 Other build and C API changes
 -----------------------------
 
@@ -1013,19 +1035,6 @@
   marked as accepting ``const char *`` rather than ``char *`` (Contributed
   by Serhiy Storchaka in :issue:`1772673`).
 
-.. _whatsnew-pep-436:
-
-* "Argument Clinic" (:pep:`436`) is now part of the CPython build process
-  and can be used to simplify the process of defining and maintaining
-  accurate signatures for builtins and standard library extension modules
-  implemented in C.
-
-  .. note::
-     The Argument Clinic PEP is not fully up to date with the state of the
-     implementation. This has been deemed acceptable by the release manager
-     and core development team in this case, as Argument Clinic will not
-     be made available as a public API for third party use in Python 3.4.
-
 * New shell version of ``python-config``; can be used even when a python
   interpreter is not available (for example, in cross compilation scenarios).
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list