(self)
| 55 | tok.get() |
| 56 | |
| 57 | def testQuotedString6(self): |
| 58 | with self.assertRaises(dns.exception.SyntaxError): |
| 59 | tok = dns.tokenizer.Tokenizer(r'"foo\01') |
| 60 | tok.get() |
| 61 | |
| 62 | def testQuotedString7(self): |
| 63 | with self.assertRaises(dns.exception.SyntaxError): |