(self, children)
| 103 | return [("w:%s" % letter) for letter in letters] |
| 104 | |
| 105 | def rPr_bldr(self, children): |
| 106 | rPr_bldr = an_rPr().with_nsdecls() |
| 107 | for char in children: |
| 108 | if char == "b": |
| 109 | rPr_bldr.with_child(a_b()) |
| 110 | elif char == "i": |
| 111 | rPr_bldr.with_child(an_i()) |
| 112 | elif char == "u": |
| 113 | rPr_bldr.with_child(a_u()) |
| 114 | else: |
| 115 | raise NotImplementedError("got '%s'" % char) |
| 116 | return rPr_bldr |
| 117 | |
| 118 | |
| 119 | class DescribeSerializeForReading: |
no test coverage detected