[Python-checkins] cpython: Add PyType_GetSlot to python3 def file. Patch courtesy Martin v. Löwis.

larry.hastings python-checkins at python.org
Tue Feb 11 09:16:37 CET 2014


http://hg.python.org/cpython/rev/01d53ed4a98d
changeset:   89133:01d53ed4a98d
user:        Larry Hastings <larry at hastings.org>
date:        Mon Feb 10 14:40:04 2014 -0800
summary:
  Add PyType_GetSlot to python3 def file.  Patch courtesy Martin v. Löwis.

files:
  PC/python3.def      |  1 +
  PC/python34stub.def |  1 +
  2 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/PC/python3.def b/PC/python3.def
--- a/PC/python3.def
+++ b/PC/python3.def
@@ -519,6 +519,7 @@
   PyType_GenericAlloc=python34.PyType_GenericAlloc
   PyType_GenericNew=python34.PyType_GenericNew
   PyType_GetFlags=python34.PyType_GetFlags
+  PyType_GetSlot=python34.PyType_GetSlot
   PyType_IsSubtype=python34.PyType_IsSubtype
   PyType_Modified=python34.PyType_Modified
   PyType_Ready=python34.PyType_Ready
diff --git a/PC/python34stub.def b/PC/python34stub.def
--- a/PC/python34stub.def
+++ b/PC/python34stub.def
@@ -518,6 +518,7 @@
 PyType_GenericAlloc
 PyType_GenericNew
 PyType_GetFlags
+PyType_GetSlot
 PyType_IsSubtype
 PyType_Modified
 PyType_Ready

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


More information about the Python-checkins mailing list