(msg, *key)
| 769 | |
| 770 | _warned = set() |
| 771 | def _warn(msg, *key): |
| 772 | key = (msg,) + key |
| 773 | if key not in _warned: |
| 774 | try: |
| 775 | print(msg, file=sys.stderr) |
| 776 | except OSError: |
| 777 | pass |
| 778 | _warned.add(key) |
| 779 | |
| 780 | |
| 781 | class ConfigChanges(dict): |
no test coverage detected