8000 WIP, MAINT: Improve import time by hmaarrfk · Pull Request #14083 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

WIP, MAINT: Improve import time #14083

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove tester to improve import time
  • Loading branch information
hmaarrfk committed Jul 23, 2019
commit 50686ca0434cc8a34237a385973c081852cfb5c9
4 changes: 0 additions & 4 deletions numpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,6 @@
oldnumeric = 'removed'
numarray = 'removed'

# We don't actually use this ourselves anymore, but I'm not 100% sure that
# no-one else in the world is using it (though I hope not)
from .testing import Tester

# Pytest testing
from numpy._pytesttester import PytestTester
test = PytestTester(__name__)
Expand Down
1 change: 0 additions & 1 deletion numpy/tests/test_public_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def check_dir(module, module_name=None):
def test_numpy_namespace():
# None of these objects are publicly documented.
undocumented = {
'Tester': 'numpy.testing._private.nosetester.NoseTester',
'_add_newdoc_ufunc': 'numpy.core._multiarray_umath._add_newdoc_ufunc',
'add_docstring': 'numpy.core._multiarray_umath.add_docstring',
'add_newdoc': 'numpy.core.function_base.add_newdoc',
Expand Down
0