Overview
Comment: | [build][fr] new imports for build_data for fr language |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fr | graphspell |
Files: | files | file ages | folders |
SHA3-256: |
cc921a45bc75c2531be0f702bd74b776 |
User & Date: | olr on 2017-12-24 19:59:51 |
Other Links: | branch diff | manifest | tags |
Context
2017-12-24
| ||
21:01 | [build] JS code extension for Graphspell + fix for Grammalecte check-in: c446938f7b user: olr tags: build, graphspell | |
19:59 | [build][fr] new imports for build_data for fr language check-in: cc921a45bc user: olr tags: fr, graphspell | |
19:55 | [build][js] fix build for JS check-in: 3c60cd7966 user: olr tags: build, graphspell | |
Changes
Modified gc_lang/fr/build_data.py from [6a4fdb333b] to [9a16091a61].
1 2 3 4 5 6 7 8 9 10 11 | #!python3 # FRENCH DATA BUILDER # # by Olivier R. # License: MPL 2 import json import os import itertools | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!python3 # FRENCH DATA BUILDER # # by Olivier R. # License: MPL 2 import json import os import itertools import graphspell.ibdawg as ibdawg from graphspell.echo import echo from graphspell.str_transform import defineSuffixCode import graphspell.tokenizer as tkz import grammalecte.fr.conj as conj class cd: """Context manager for changing the current working directory""" def __init__ (self, newPath): self.newPath = os.path.expanduser(newPath) |
︙ | ︙ |