resolve issue 23

--HG--
branch : 1.0.x
This commit is contained in:
holger krekel 2009-06-24 16:24:20 +02:00
parent 49c4027df3
commit 74ba91dd50
2 changed files with 7 additions and 1 deletions

View File

@ -8,7 +8,10 @@ Changes between 1.0.0b3 and 1.0.0
* apply modified patches from Andreas Kloeckner to allow
test functions to have no func_code (#22) and to make
"-k" and function keywords work (#20)
"-k" and function keywords work (#20)
* apply patch from Daniel Peolzleithner (issue #23)
Changes between 1.0.0b1 and 1.0.0b3
=============================================

View File

@ -137,6 +137,9 @@ class DontReadFromInput:
readlines = read
__iter__ = read
def isatty(self):
return False
try:
devnullpath = os.devnull
except AttributeError: