(self)
| 10 | self.isSummary = isSummary |
| 11 | |
| 12 | def get_title(self): |
| 13 | lines = open(self.fname) |
| 14 | for line in lines: |
| 15 | if re.match('^# ', line): |
| 16 | title = re.split(' - ', line)[2:] |
| 17 | break |
| 18 | |
| 19 | return title |
nothing calls this directly
no outgoing calls
no test coverage detected