Overview
| Comment: | [core][py] useless imports |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | core |
| Files: | files | file ages | folders |
| SHA3-256: |
0346156a660a258a84ccc400c4cd3b9a |
| User & Date: | olr on 2018-09-19 21:48:32 |
| Other Links: | manifest | tags |
Context
|
2018-09-19
| ||
| 22:30 | [graphspell] fix import of custom suggestion module check-in: 2434cdac51 user: olr tags: trunk, graphspell | |
| 21:48 | [core][py] useless imports check-in: 0346156a66 user: olr tags: trunk, core | |
| 18:47 | [core][js] add forgotten file <gc_rules_graph.js> to the repo check-in: bd97be5de1 user: olr tags: trunk, core | |
Changes
Modified gc_core/py/lang_core/gc_engine.py from [b63b69316e] to [b1e910dee6].
1 2 3 4 5 6 | """ Grammalecte Grammar checker engine """ import re | < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""
Grammalecte
Grammar checker engine
"""
import re
import traceback
#import unicodedata
from itertools import chain
from ..graphspell.spellchecker import SpellChecker
from ..graphspell.echo import echo
from . import gc_options
try:
# LibreOffice / OpenOffice
from com.sun.star.linguistic2 import SingleProofreadingError
from com.sun.star.text.TextMarkupType import PROOFREADING
|
| ︙ | ︙ |