DebugClients/Python/DebugClientBase.py

changeset 1029
0fb3d1d26eab
parent 945
8cd4d08fa9f6
child 1112
8a7d1b9d18db
equal deleted inserted replaced
1027:75707baf9551 1029:0fb3d1d26eab
1839 redirect = 0 1839 redirect = 0
1840 del args[0] 1840 del args[0]
1841 elif args[0] == '--no-encoding': 1841 elif args[0] == '--no-encoding':
1842 self.noencoding = True 1842 self.noencoding = True
1843 del args[0] 1843 del args[0]
1844 elif args[0] == '--fork-child':
1845 self.fork_auto = True
1846 self.fork_child = True
1847 del args[0]
1848 elif args[0] == '--fork-parent':
1849 self.fork_auto = True
1850 self.fork_child = False
1851 del args[0]
1844 elif args[0] == '--': 1852 elif args[0] == '--':
1845 del args[0] 1853 del args[0]
1846 break 1854 break
1847 else: # unknown option 1855 else: # unknown option
1848 del args[0] 1856 del args[0]

eric ide

mercurial