[Python-checkins] peps: PEP 510: minor fixes

victor.stinner python-checkins at python.org
Tue Jan 12 16:47:06 EST 2016


https://hg.python.org/peps/rev/5e7bdef3f3d3
changeset:   6173:5e7bdef3f3d3
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Jan 12 22:46:36 2016 +0100
summary:
  PEP 510: minor fixes

files:
  pep-0510.txt |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/pep-0510.txt b/pep-0510.txt
--- a/pep-0510.txt
+++ b/pep-0510.txt
@@ -262,11 +262,11 @@
 Changes to the Python C API:
 
 * Add a ``PyFuncGuardObject`` object and a ``PyFuncGuard_Type`` type
-* Add a ``PySpecializedFunc`` structure
+* Add a ``PySpecializedCode`` structure
 * Add the following fields to the ``PyFunctionObject`` structure::
 
     Py_ssize_t nb_specialized;
-    PyObject *specialized;   /* array of PySpecializedFunc  objects */
+    PySpecializedCode *specialized;
 
 * Add function methods:
 

-- 
Repository URL: https://hg.python.org/peps


More information about the Python-checkins mailing list