(self)
| 1010 | self._assert_not_quoted(q2) |
| 1011 | |
| 1012 | def test_pickle_quote(self): |
| 1013 | q1 = quoted_name(class="st">"x", True) |
| 1014 | for loads, dumps in picklers(): |
| 1015 | q2 = loads(dumps(q1)) |
| 1016 | eq_(str(q1), str(q2)) |
| 1017 | eq_(q1.quote, q2.quote) |
| 1018 | |
| 1019 | def test_pickle_anon_label(self): |
| 1020 | q1 = _anonymous_label(quoted_name(class="st">"x", True)) |
nothing calls this directly
no test coverage detected