summaryrefslogtreecommitdiff
path: root/numpy/lib/tests
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-07-22 15:45:48 -0500
committerGitHub <noreply@github.com>2019-07-22 15:45:48 -0500
commita06c949bbfca81db4e9c000f27f3c417788ce6b7 (patch)
tree4b3c9c932db7c9f4f84f96815796d9cd62da454b /numpy/lib/tests
parentf274b332944dca810342969cd97a6bc2f8d50533 (diff)
parent82bc01143c74f997c0129075bb6f41490bf95bc0 (diff)
downloadnumpy-a06c949bbfca81db4e9c000f27f3c417788ce6b7.tar.gz
Merge pull request #13964 from colinsnyder/add-recfunctions
BUG, DOC: add new recfunctions to `__all__`
Diffstat (limited to 'numpy/lib/tests')
-rw-r--r--numpy/lib/tests/test_recfunctions.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_recfunctions.py b/numpy/lib/tests/test_recfunctions.py
index f713fb64d..0126ccaf8 100644
--- a/numpy/lib/tests/test_recfunctions.py
+++ b/numpy/lib/tests/test_recfunctions.py
@@ -12,9 +12,11 @@ from numpy.lib.recfunctions import (
find_duplicates, merge_arrays, append_fields, stack_arrays, join_by,
repack_fields, unstructured_to_structured, structured_to_unstructured,
apply_along_fields, require_fields, assign_fields_by_name)
+get_fieldspec = np.lib.recfunctions._get_fieldspec
get_names = np.lib.recfunctions.get_names
get_names_flat = np.lib.recfunctions.get_names_flat
-zip_descr = np.lib.recfunctions.zip_descr
+zip_descr = np.lib.recfunctions._zip_descr
+zip_dtype = np.lib.recfunctions._zip_dtype
class TestRecFunctions(object):