Grammalecte  Check-in [893f14b8f3]

Overview
Comment:[core][bug] spellchecker: import
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | core
Files: files | file ages | folders
SHA3-256: 893f14b8f3f072a022e2da2fb51f1535e6105a8846e069db7aea60399c74cdba
User & Date: olr on 2017-07-07 09:28:04
Other Links: manifest | tags
Context
2017-07-07
20:52
[fr] faux positif, accord COD check-in: 5737bd5a62 user: olr tags: trunk, fr
09:28
[core][bug] spellchecker: import check-in: 893f14b8f3 user: olr tags: trunk, core
2017-07-06
14:33
[core] ibdawg: add suggestions by switching chars check-in: 284a6fae4c user: olr tags: trunk, core
Changes

Modified gc_core/py/spellchecker.py from [4ad06f57bc] to [c6b35d80ee].

1
2
3
4
5
6
7
8
9
10
11
12
# Spellchecker
# Wrapper for the IBDAWG class.
# Useful to check several dictionaries at once.

import ibdawg


dDictionaries = {
    "fr": "French.bdic",
    "en": "English.bdic"
}





|







1
2
3
4
5
6
7
8
9
10
11
12
# Spellchecker
# Wrapper for the IBDAWG class.
# Useful to check several dictionaries at once.

from . import ibdawg


dDictionaries = {
    "fr": "French.bdic",
    "en": "English.bdic"
}