summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-11-18 19:22:55 -0700
committerCharles Harris <charlesr.harris@gmail.com>2018-11-18 20:11:15 -0700
commit0f65a90cf03049c283a3063abacc9e18bf43125c (patch)
treeca67caf0c538cf9025f640aa918d3be2e802dd21
parent70674407108faef9ade4ccb283748200247b2b57 (diff)
downloadnumpy-0f65a90cf03049c283a3063abacc9e18bf43125c.tar.gz
MAINT: Update cversion hash.
A new function was added to the ufunc_funcs_api. Closes #12412.
-rw-r--r--numpy/core/code_generators/cversions.txt9
-rw-r--r--numpy/core/code_generators/numpy_api.py3
2 files changed, 6 insertions, 6 deletions
diff --git a/numpy/core/code_generators/cversions.txt b/numpy/core/code_generators/cversions.txt
index 73cd8ddd6..00f10df57 100644
--- a/numpy/core/code_generators/cversions.txt
+++ b/numpy/core/code_generators/cversions.txt
@@ -43,7 +43,8 @@
# Version 12 (NumPy 1.15) No change.
0x0000000c = a1bc756c5782853ec2e3616cf66869d8
-# Version 13 (NumPy 1.16) Deprecate PyArray_SetNumericOps and
-# PyArray_GetNumericOps, Added fields core_dim_flags and core_dim_sizes
-# to PyUFuncObject
-0x0000000d = a1bc756c5782853ec2e3616cf66869d8
+# Version 13 (NumPy 1.16)
+# Deprecate PyArray_SetNumericOps and PyArray_GetNumericOps,
+# Add fields core_dim_flags and core_dim_sizes to PyUFuncObject.
+# Add PyUFunc_FromFuncAndDataAndSignatureAndIdentity to ufunc_funcs_api.
+0x0000000d = 5b0e8bbded00b166125974fc71e80a33
diff --git a/numpy/core/code_generators/numpy_api.py b/numpy/core/code_generators/numpy_api.py
index fdf97ac00..a71c236fd 100644
--- a/numpy/core/code_generators/numpy_api.py
+++ b/numpy/core/code_generators/numpy_api.py
@@ -402,8 +402,7 @@ ufunc_funcs_api = {
# End 1.7 API
'PyUFunc_RegisterLoopForDescr': (41,),
# End 1.8 API
- 'PyUFunc_FromFuncAndDataAndSignatureAndIdentity':
- (42,),
+ 'PyUFunc_FromFuncAndDataAndSignatureAndIdentity': (42,),
# End 1.16 API
}