##// END OF EJS Templates
Fix typos
Andrew Kreimer -
Show More
@@ -541,7 +541,7 b' class RawText:'
541 541 class CallExpression:
542 542 """ Object which emits a line-wrapped call expression in the form `__name(*args, **kwargs)` """
543 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 545 # will kick in.
546 546 self = __self
547 547 self.name = __name
@@ -555,7 +555,7 b' class CallExpression:'
555 555 return inner
556 556
557 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 559 # will kick in.
560 560
561 561 started = False
General Comments 0
You need to be logged in to leave comments. Login now