Examples/rhallo.py@55bb39334322
Examples/rhallo.py
Sat, 03 Feb 2018 10:45:52 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 03 Feb 2018 10:45:52 +0100
- branch
- maintenance
- changeset 6103
- 55bb39334322
- parent 5422
-
222da86472d9
- child 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Fixed a situation in the tabview view manager that could cause a traceback.
(grafted from a5b9f6a38fafcd549914bc8d8cdc1b4e44602b01)
#!/usr/bin/env python
import sys
import eric6dbgstub
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
if eric6dbgstub.initDebugger("standard"):
eric6dbgstub.debugger.startDebugger()
main()