Commit 1422fd7
ENH/BF: Workaround for stderr confusion after importing sounddevice
Fixes GH-2230.
Old behavior:
```
In [1]: from psychopy.sound import Sound
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
In [2]: input('foo> ')
bar.
Out[2]: 'bar.'
```
New behavior:
```
In [1]: from psychopy.sound import Sound
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
In [2]: input('foo> ')
foo> bar.
Out[2]: 'bar.'
```1 parent c0110db commit 1422fd7
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| 21 | + | |
21 | 22 | | |
22 | 23 | | |
23 | 24 | | |
| |||
0 commit comments