Sets the text label for the Widget. Args: text (str): The string label of the Widget.
(self, text)
| 2867 | self.set_text(text) |
| 2868 | |
| 2869 | def set_text(self, text): |
| 2870 | """ |
| 2871 | Sets the text label for the Widget. |
| 2872 | |
| 2873 | Args: |
| 2874 | text (str): The string label of the Widget. |
| 2875 | """ |
| 2876 | _MixinTextualWidget.set_text(self, text) |
| 2877 | self.children['text'] = self.children['text'].replace(' ', ' ') |
| 2878 | |
| 2879 | def get_text(self): |
| 2880 | """ |
no outgoing calls
no test coverage detected