(msg, text)
| 116 | |
| 117 | |
| 118 | def immediate_print(msg, text): |
| 119 | print(msg) |
| 120 | for i in text: |
| 121 | print(i, end="") |
| 122 | sys.stdout.flush() |
| 123 | time.sleep(random.random()/20) |
| 124 | |
| 125 | if __name__ == "__main__": |
| 126 | try: |
no outgoing calls
no test coverage detected