(parser)
| 124 | return parser.get_surrounding_brackets(mustclose=False) |
| 125 | |
| 126 | def with_mustclose(parser): |
| 127 | # a utility function to get surrounding bracket |
| 128 | # with mustclose=True |
| 129 | return parser.get_surrounding_brackets(mustclose=True) |
| 130 | |
| 131 | p = get('3.2') |
| 132 | self.assertIsNone(with_mustclose(p)) |
nothing calls this directly
no test coverage detected