()
| 87 | collectedFontPaths[fontName] = path |
| 88 | |
| 89 | def getPageBotFontPaths(): |
| 90 | paths = {} |
| 91 | testFontsPath = getTestFontsPath() |
| 92 | _recursivelyCollectFontPaths(testFontsPath, paths) |
| 93 | return paths |
| 94 | |
| 95 | def getFontPaths(extraPaths=None): |
| 96 | """Answers a dictionary with all available font paths on the platform, key |
nothing calls this directly
no test coverage detected