A simple struct for holding a doc's url and title.
| 325 | |
| 326 | |
| 327 | class _DocInfo(object): |
| 328 | """A simple struct for holding a doc's url and title.""" |
| 329 | |
| 330 | def __init__(self, url, title): |
| 331 | self.url = url |
| 332 | self.title = title |
| 333 | |
| 334 | |
| 335 | def build_doc_index(src_dir): |