Create a builder based on an Options object.
(options)
| 955 | |
| 956 | |
| 957 | def makeBuilder(options): |
| 958 | """Create a builder based on an Options object.""" |
| 959 | if options.namespaces: |
| 960 | return ExpatBuilderNS(options) |
| 961 | else: |
| 962 | return ExpatBuilder(options) |
nothing calls this directly
no test coverage detected
searching dependent graphs…