(scale=1)
| 253 | |
| 254 | @skipif_not_numpy |
| 255 | def get_test_tone(scale=1): |
| 256 | return numpy.sin(2 * numpy.pi * 440 * numpy.linspace(0, 1, 44100)) * scale |
| 257 | |
| 258 | def read_wav(data): |
| 259 | with wave.open(BytesIO(data)) as wave_file: |
no outgoing calls
no test coverage detected