diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-03-16 17:14:39 +0100 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2021-03-16 17:14:39 +0100 |
commit | f0fa0662bb1cf116193b3a6e628c18f595937da7 (patch) | |
tree | a97c8acaed4e3275b0be351b7e46973a7682755e /numpy/tests/test_public_api.py | |
parent | 564a71c29fae0b09eb8a44a96600a1f9a5b00a16 (diff) | |
download | numpy-f0fa0662bb1cf116193b3a6e628c18f595937da7.tar.gz |
API: Move `polynomial.polyutils` to the `PRIVATE_BUT_PRESENT_MODULES` list
Aforementioned module was accidently marked as public
Diffstat (limited to 'numpy/tests/test_public_api.py')
-rw-r--r-- | numpy/tests/test_public_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py index c7a789b21..6e4a8dee0 100644 --- a/numpy/tests/test_public_api.py +++ b/numpy/tests/test_public_api.py @@ -167,7 +167,6 @@ PUBLIC_MODULES = ['numpy.' + s for s in [ "polynomial.laguerre", "polynomial.legendre", "polynomial.polynomial", - "polynomial.polyutils", "random", "testing", "typing", @@ -294,6 +293,7 @@ PRIVATE_BUT_PRESENT_MODULES = ['numpy.' + s for s in [ "ma.timer_comparison", "matrixlib", "matrixlib.defmatrix", + "polynomial.polyutils", "random.mtrand", "random.bit_generator", "testing.print_coercion_tables", |