(obj)
| 883 | line, crc = 0, 0 |
| 884 | |
| 885 | def sprint(obj): |
| 886 | nonlocal line, crc |
| 887 | txt = str(obj) |
| 888 | line += 1 |
| 889 | crc = crc32(txt.encode(encoding='utf-8'), crc) |
| 890 | print(txt) |
| 891 | #print('***', line, crc, '***') # Uncomment for diagnosis. |
| 892 | |
| 893 | def dumpCfg(cfg): |
| 894 | print('\n', cfg, '\n') # Cfg has variable '0xnnnnnnnn' address. |