Overview
Comment: | [build] add description parameter |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | build |
Files: | files | file ages | folders |
SHA3-256: |
7a0938237b38e55a2011b5d5b952d74c |
User & Date: | olr on 2019-03-26 19:26:48 |
Other Links: | manifest | tags |
Context
2019-03-26
| ||
19:28 | [fr] dictionary update: v6.4 check-in: 1fe8518419 user: olr tags: trunk, fr | |
19:26 | [build] add description parameter check-in: 7a0938237b user: olr tags: trunk, build | |
19:04 | [fr] faux positif check-in: a3136cf8c4 user: olr tags: trunk, fr | |
Changes
Modified lex_build.py from [346704203c] to [c16f0b3559].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | - + - + - - + + | #!python3 # Lexicon builder import argparse from distutils import dir_util import graphspell.dawg as fsa from graphspell.ibdawg import IBDAWG |
Modified make.py from [38cc0aad8b] to [50643cf0e8].
︙ | |||
348 349 350 351 352 353 354 | 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | - + - + | "build binary dictionary for Graphspell from lexicons" if sType == "main": spfLexSrc = dVars['lexicon_src'] lSfDictDst = dVars['dic_filenames'].split(",") lDicName = dVars['dic_name'].split(",") lFilter = dVars['dic_filter'].split(",") for sfDictDst, sDicName, sFilter in zip(lSfDictDst, lDicName, lFilter): |
︙ |