Author: Brian Kearns <bdkea...@gmail.com> Branch: Changeset: r60665:9384b83b4442 Date: 2013-01-29 06:17 -0500 http://bitbucket.org/pypy/pypy/changeset/9384b83b4442/
Log: oops this doesnt make sense for windows diff --git a/pypy/module/_socket/test/test_sock_app.py b/pypy/module/_socket/test/test_sock_app.py --- a/pypy/module/_socket/test/test_sock_app.py +++ b/pypy/module/_socket/test/test_sock_app.py @@ -369,7 +369,8 @@ s.close() assert s.fileno() < 0 s.close() - raises(OSError, os.close, fileno) + if os.name != 'nt': + raises(OSError, os.close, fileno) def test_socket_close_error(self): import _socket, os _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit