(self, var)
| 701 | # ======================================================================================================================= |
| 702 | class DequeResolver(TupleResolver): |
| 703 | def get_dictionary(self, var): |
| 704 | d = TupleResolver.get_dictionary(self, var) |
| 705 | d["maxlen"] = getattr(var, "maxlen", None) |
| 706 | return d |
| 707 | |
| 708 | |
| 709 | # ======================================================================================================================= |
nothing calls this directly
no test coverage detected