diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-04-21 21:05:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-21 21:05:58 -0600 |
commit | b5c1bcf1e8ef6e9c11bb4138a15286e648fcbce0 (patch) | |
tree | 62cd661d640647bfd210682cf0ce8d553ef69d09 /numpy/testing/utils.py | |
parent | e0b5e8740efe6d42c909c1374494e614592c65ab (diff) | |
parent | 3ff0c5c82b8abc4c94b1801a13f488778631f38a (diff) | |
download | numpy-b5c1bcf1e8ef6e9c11bb4138a15286e648fcbce0.tar.gz |
Merge pull request #10891 from eric-wieser/assert-no-cycles
TST: Extract a helper function to test for reference cycles
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 78cf405cf..184adcc74 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -25,5 +25,5 @@ __all__ = [ 'assert_allclose', 'IgnoreException', 'clear_and_catch_warnings', 'SkipTest', 'KnownFailureException', 'temppath', 'tempdir', 'IS_PYPY', 'HAS_REFCOUNT', 'suppress_warnings', 'assert_array_compare', - '_assert_valid_refcount', '_gen_alignment_data', + '_assert_valid_refcount', '_gen_alignment_data', 'assert_no_gc_cycles' ] |