Path 1: 64 calls (1.0)

tuple (64)

1def control(self, *control: Control) -> None:
2        """Insert non-printing control codes.
3
4        Args:
5            control_codes (str): Control codes, such as those that may move the cursor.
6        """
7        if not self.is_dumb_terminal:
8            with self:
9                self._buffer.extend(_control.segment for _control in control)