DEPRECATED: Write a string to the default output
(self,data)
| 3616 | |
| 3617 | @undoc |
| 3618 | def write(self,data): |
| 3619 | """DEPRECATED: Write a string to the default output""" |
| 3620 | warn('InteractiveShell.write() is deprecated, use sys.stdout instead', |
| 3621 | DeprecationWarning, stacklevel=2) |
| 3622 | sys.stdout.write(data) |
| 3623 | |
| 3624 | @undoc |
| 3625 | def write_err(self,data): |
no outgoing calls