parent
49c4027df3
commit
74ba91dd50
|
@ -10,6 +10,9 @@ Changes between 1.0.0b3 and 1.0.0
|
||||||
test functions to have no func_code (#22) and to make
|
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
|
Changes between 1.0.0b1 and 1.0.0b3
|
||||||
=============================================
|
=============================================
|
||||||
|
|
||||||
|
|
|
@ -137,6 +137,9 @@ class DontReadFromInput:
|
||||||
readlines = read
|
readlines = read
|
||||||
__iter__ = read
|
__iter__ = read
|
||||||
|
|
||||||
|
def isatty(self):
|
||||||
|
return False
|
||||||
|
|
||||||
try:
|
try:
|
||||||
devnullpath = os.devnull
|
devnullpath = os.devnull
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
|
|
Loading…
Reference in New Issue