(*args)
| 53 | print(*args) |
| 54 | |
| 55 | def printerr(*args): |
| 56 | text = "" |
| 57 | for a in args: |
| 58 | text = text + str(a) + " " |
| 59 | # Strip just the spaces here, don't strip the newline or tabs. |
| 60 | text = text.strip(" ") |
| 61 | if text: |
| 62 | sys.stderr.write(text + "\n") |
| 63 | |
| 64 | # Support for asynchronous input-output to/from stdin/stdout |
| 65 |
no outgoing calls
no test coverage detected
searching dependent graphs…