comparison: eric7/DebugClients/Python/DebugUtilities.py
eric7/DebugClients/Python/DebugUtilities.py
- branch
- eric7
- changeset 8925
- 8375eb895f70
- parent 8921
- 8459c7e1b904
equal
deleted
inserted
replaced
407 state = DEFAULT |
407 state = DEFAULT |
408 backslashes = 0 |
408 backslashes = 0 |
409 buf = '' |
409 buf = '' |
410 |
410 |
411 argsLen = len(args) |
411 argsLen = len(args) |
412 i=0 |
412 i = 0 |
413 while i < argsLen: |
413 while i < argsLen: |
414 ch = args[i] |
414 ch = args[i] |
415 if ch == '\\': |
415 if ch == '\\': |
416 backslashes += 1 |
416 backslashes += 1 |
417 i += 1 |
417 i += 1 |