##// END OF EJS Templates
Fix typos
Andrew Kreimer -
Show More
@@ -541,7 +541,7 class RawText:
541 class CallExpression:
541 class CallExpression:
542 """ Object which emits a line-wrapped call expression in the form `__name(*args, **kwargs)` """
542 """ Object which emits a line-wrapped call expression in the form `__name(*args, **kwargs)` """
543 def __init__(__self, __name, *args, **kwargs):
543 def __init__(__self, __name, *args, **kwargs):
544 # dunders are to avoid clashes with kwargs, as python's name manging
544 # dunders are to avoid clashes with kwargs, as python's name managing
545 # will kick in.
545 # will kick in.
546 self = __self
546 self = __self
547 self.name = __name
547 self.name = __name
@@ -555,7 +555,7 class CallExpression:
555 return inner
555 return inner
556
556
557 def _repr_pretty_(self, p, cycle):
557 def _repr_pretty_(self, p, cycle):
558 # dunders are to avoid clashes with kwargs, as python's name manging
558 # dunders are to avoid clashes with kwargs, as python's name managing
559 # will kick in.
559 # will kick in.
560
560
561 started = False
561 started = False
General Comments 0
You need to be logged in to leave comments. Login now