Show More
@@ -71,7 +71,7 b' class StatelessInputTransformer(InputTransformer):' | |||
|
71 | 71 | self.func = func |
|
72 | 72 | |
|
73 | 73 | def __repr__(self): |
|
74 | return "StatelessInputTransformer(func={!r})".format(self.func) | |
|
74 | return "StatelessInputTransformer(func={0!r})".format(self.func) | |
|
75 | 75 | |
|
76 | 76 | def push(self, line): |
|
77 | 77 | """Send a line of input to the transformer, returning the |
@@ -90,7 +90,7 b' class CoroutineInputTransformer(InputTransformer):' | |||
|
90 | 90 | next(self.coro) |
|
91 | 91 | |
|
92 | 92 | def __repr__(self): |
|
93 | return "CoroutineInputTransformer(coro={!r})".format(self.coro) | |
|
93 | return "CoroutineInputTransformer(coro={0!r})".format(self.coro) | |
|
94 | 94 | |
|
95 | 95 | def push(self, line): |
|
96 | 96 | """Send a line of input to the transformer, returning the |
General Comments 0
You need to be logged in to leave comments.
Login now