Author: Armin Rigo <ar...@tunes.org> Branch: release-1.6.x Changeset: r46458:59a8ee6ba249 Date: 2011-08-12 09:55 +0200 http://bitbucket.org/pypy/pypy/changeset/59a8ee6ba249/
Log: Windows fix. diff --git a/pypy/module/posix/app_posix.py b/pypy/module/posix/app_posix.py --- a/pypy/module/posix/app_posix.py +++ b/pypy/module/posix/app_posix.py @@ -315,7 +315,7 @@ self._proc = proc def close(self): self._stream.close() - return self._proc.wait() + return self._proc.wait() or None # 0 => None __del__ = close def __getattr__(self, name): return getattr(self._stream, name) _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit