中文数位字符
| 132 | |
| 133 | |
| 134 | class ChineseMath(ChineseChar): |
| 135 | """ |
| 136 | 中文数位字符 |
| 137 | """ |
| 138 | |
| 139 | def __init__(self, simplified, traditional, symbol, expression=None): |
| 140 | super(ChineseMath, self).__init__(simplified, traditional) |
| 141 | self.symbol = symbol |
| 142 | self.expression = expression |
| 143 | self.big_s = simplified |
| 144 | self.big_t = traditional |
| 145 | |
| 146 | |
| 147 | CC, CNU, CND, CM = ChineseChar, ChineseNumberUnit, ChineseNumberDigit, ChineseMath |
nothing calls this directly
no outgoing calls
no test coverage detected