(o, *, use_bin_type=USE_BIN_TYPE, unicode_errors=UNICODE_ERRORS, **kwargs)
| 107 | |
| 108 | |
| 109 | def packb(o, *, use_bin_type=USE_BIN_TYPE, unicode_errors=UNICODE_ERRORS, **kwargs): |
| 110 | assert unicode_errors == UNICODE_ERRORS |
| 111 | try: |
| 112 | return mp_packb(o, use_bin_type=use_bin_type, unicode_errors=unicode_errors, **kwargs) |
| 113 | except Exception as e: |
| 114 | raise PackException(e) |
| 115 | |
| 116 | |
| 117 | def pack(o, stream, *, use_bin_type=USE_BIN_TYPE, unicode_errors=UNICODE_ERRORS, **kwargs): |
nothing calls this directly
no test coverage detected