Clears current console line
(forceOutput=False)
| 2397 | return retVal |
| 2398 | |
| 2399 | def clearConsoleLine(forceOutput=False): |
| 2400 | """ |
| 2401 | Clears current console line |
| 2402 | """ |
| 2403 | |
| 2404 | if IS_TTY: |
| 2405 | dataToStdout("\r%s\r" % (" " * (getConsoleWidth() - 1)), forceOutput) |
| 2406 | |
| 2407 | kb.prependFlag = False |
| 2408 | |
| 2409 | def parseXmlFile(xmlFile, handler): |
| 2410 | """ |
searching dependent graphs…