9327:2b768afcaee1 | 9328:49a0a9cb2505 |
---|---|
21 @param rcode result code to report back (integer) | 21 @param rcode result code to report back (integer) |
22 """ | 22 """ |
23 print() | 23 print() |
24 | 24 |
25 if sys.platform.startswith(("win", "cygwin")): | 25 if sys.platform.startswith(("win", "cygwin")): |
26 with contextlib.suppress(): | 26 with contextlib.suppress(EOFError): |
27 input("Press enter to continue...") # secok | 27 input("Press enter to continue...") # secok |
28 | 28 |
29 sys.exit(rcode) | 29 sys.exit(rcode) |
30 | 30 |
31 | 31 |