From 09af0296387b05f6415dd64e5f5fb00ec9b921af Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 19 Nov 2012 01:43:02 -0500 Subject: [PATCH] FFT_tools: add docstring to TestRFFT.test_rfft --- FFT_tools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/FFT_tools.py b/FFT_tools.py index abdc75f..9a6041a 100644 --- a/FFT_tools.py +++ b/FFT_tools.py @@ -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)) -- 2.26.2