(self, fraction=None, chntext=None)
| 488 | """ |
| 489 | |
| 490 | def __init__(self, fraction=None, chntext=None): |
| 491 | self.fraction = fraction |
| 492 | self.chntext = chntext |
| 493 | |
| 494 | def chntext2fraction(self): |
| 495 | denominator, numerator = self.chntext.split('分之') |
nothing calls this directly
no outgoing calls
no test coverage detected