FFT_tools: add docstring to TestRFFT.test_rfft
authorW. Trevor King <wking@tremily.us>
Mon, 19 Nov 2012 06:43:02 +0000 (01:43 -0500)
committerW. Trevor King <wking@tremily.us>
Mon, 19 Nov 2012 06:43:02 +0000 (01:43 -0500)
FFT_tools.py

index abdc75f455542f7c14f84f7ce2de2dcc4aa4b806..9a6041ae70c9776331f03508beaee9b11a881cdd 100644 (file)
@@ -382,6 +382,7 @@ class TestRFFT (_unittest.TestCase):
                 timeSum, n, freqSum))
 
     def test_rfft(self):
+        "Test NumPy's builtin :func:`numpy.fft.rfft`"
         xs = [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1]
         self.run_rfft(xs, _numpy.fft.rfft(xs))