(parser)
| 119 | get = self.get_parser |
| 120 | |
| 121 | def without_mustclose(parser): |
| 122 | # a utility function to get surrounding bracket |
| 123 | # with mustclose=False |
| 124 | return parser.get_surrounding_brackets(mustclose=False) |
| 125 | |
| 126 | def with_mustclose(parser): |
| 127 | # a utility function to get surrounding bracket |
nothing calls this directly
no test coverage detected