##// END OF EJS Templates
py3: alias next to __next__ in commandserver.py
Yuya Nishihara -
r40394:afbfcc4e default
parent child Browse files
Show More
@@ -149,6 +149,8 b' class channeledinput(object):'
149 raise StopIteration
149 raise StopIteration
150 return l
150 return l
151
151
152 __next__ = next
153
152 def __getattr__(self, attr):
154 def __getattr__(self, attr):
153 if attr in (r'isatty', r'fileno', r'tell', r'seek'):
155 if attr in (r'isatty', r'fileno', r'tell', r'seek'):
154 raise AttributeError(attr)
156 raise AttributeError(attr)
General Comments 0
You need to be logged in to leave comments. Login now