reliability: switch to NumPy, since Numeric is deprecated

This commit is contained in:
Brian Warner
2009-02-19 01:44:35 -07:00
parent 589a757e25
commit 268cd538e2
6 changed files with 18 additions and 29 deletions

View File

@ -10,7 +10,7 @@ from twisted.plugin import IPlugin
# note that this .py file is *not* in a package: there is no __init__.py in
# our parent directory. This is important, because otherwise ours would fight
# with Twisted's. When trial looks for plugins, it merely executes all the
# *.py files it finds in and twisted/plugins/ subdirectories of anything on
# *.py files it finds in any twisted/plugins/ subdirectories of anything on
# sys.path . The namespace that results from executing these .py files is
# examined for instances which provide both IPlugin and the target interface
# (in this case, trial is looking for IReporter instances). Each such