Make an object info dict with all fields present.
(**kw)
| 82 | |
| 83 | |
| 84 | def object_info(**kw): |
| 85 | """Make an object info dict with all fields present.""" |
| 86 | infodict = {k:None for k in info_fields} |
| 87 | infodict.update(kw) |
| 88 | return infodict |
| 89 | |
| 90 | |
| 91 | def get_encoding(obj): |