4 new commits in pytest:
https://bitbucket.org/hpk42/pytest/commits/a8cc1d22509d/
Changeset: a8cc1d22509d
User:flub
Date:2014-08-18 20:07:38
Summary: Escape newlines in repr for assertion rewriting
The assertion formatting mini-language depends on newlines being
escaped. Un
New issue 573: --boxed raises UnicodeEncodeError when used with --capture=no
https://bitbucket.org/hpk42/pytest/issue/573/boxed-raises-unicodeencodeerror-when-used
David Röthlisberger:
With the following test case in "test.py":
```python
# coding: utf-8
def test_unicode():
print u"ünicöde"
`