parent
49c4027df3
commit
74ba91dd50
|
@ -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
|
||||
=============================================
|
||||
|
|
|
@ -137,6 +137,9 @@ class DontReadFromInput:
|
|||
readlines = read
|
||||
__iter__ = read
|
||||
|
||||
def isatty(self):
|
||||
return False
|
||||
|
||||
try:
|
||||
devnullpath = os.devnull
|
||||
except AttributeError:
|
||||
|
|
Loading…
Reference in New Issue