(self, arg: str)
| 40 | # cmd.Cmd commands |
| 41 | |
| 42 | def do_Bpython(self, arg: str) -> None: |
| 43 | locals_ = self.curframe.f_globals.copy() |
| 44 | locals_.update(self.curframe.f_locals) |
| 45 | bpython.embed(locals_, ["-i"]) |
| 46 | |
| 47 | def help_Bpython(self) -> None: |
| 48 | print("B(python)") |