1 """The jsonpickle.tags module provides the custom tags
2 used for pickling and unpickling Python objects.
4 These tags are keys into the flattened dictionaries
5 created by the Pickler class. The Unpickler uses
6 these custom key names to identify dictionaries
7 that need to be specially handled.
16 # All reserved tag names
17 RESERVED
= set([OBJECT
, TYPE
, REPR
, REF
, TUPLE
, SET
])