diff options
author | seberg <sebastian@sipsolutions.net> | 2015-12-30 10:51:03 +0100 |
---|---|---|
committer | seberg <sebastian@sipsolutions.net> | 2015-12-30 10:51:03 +0100 |
commit | d2435303f298eaae9118b17588d1db8c7144bb0f (patch) | |
tree | 39cf8a541072d52e4c930155b40db5347b06e76c /numpy/random/tests/test_random.py | |
parent | 004639d07fd161d1394f5dda1b6ed42c777f3c80 (diff) | |
parent | eebb304a0c91c9f52bc883a352b2520e3ca7c88e (diff) | |
download | numpy-d2435303f298eaae9118b17588d1db8c7144bb0f.tar.gz |
Merge pull request #6903 from gfyoung/np_random_cleanup
MAINT: Removed Spelling Mistakes and Unused Variables in np.random Modules
Diffstat (limited to 'numpy/random/tests/test_random.py')
-rw-r--r-- | numpy/random/tests/test_random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/tests/test_random.py b/numpy/random/tests/test_random.py index 0ce341ead..c3aa43f0e 100644 --- a/numpy/random/tests/test_random.py +++ b/numpy/random/tests/test_random.py @@ -171,7 +171,7 @@ class TestRandomDist(TestCase): # Tests whether random_integers can generate the # maximum allowed Python int that can be converted # into a C long. Previous implementations of this - # method have thrown an OverflowError when attemping + # method have thrown an OverflowError when attempting # to generate this integer. actual = np.random.random_integers(np.iinfo('l').max, np.iinfo('l').max) |