New issue 761: Capturing stdout on Windows seems to cause lockup and 100% CPU
usage
https://bitbucket.org/pytest-dev/pytest/issue/761/capturing-stdout-on-windows-seems-to-cause
Graham Markall:
On Windows 7 with Python 3.4.3 capturing stdout seems to keep hold of stdout
after `pytest.main` is fi
New issue 762: py.test doesn't reimport changed modules
https://bitbucket.org/pytest-dev/pytest/issue/762/pytest-doesnt-reimport-changed-modules
caryoscelus:
Test case:
```
#!python
#module.py
def fail():
raise Exception('fail')
```
```
#!python
#test_a.py
import module
def do_nothing(