##// 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 class channeledinput(object):
149 149 raise StopIteration
150 150 return l
151 151
152 __next__ = next
153
152 154 def __getattr__(self, attr):
153 155 if attr in (r'isatty', r'fileno', r'tell', r'seek'):
154 156 raise AttributeError(attr)
General Comments 0
You need to be logged in to leave comments. Login now