1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! python3
"""
Grammar checker tests for French language
"""
import unittest
import os
import re
import time
from ..graphspell.ibdawg import IBDAWG
from ..graphspell.echo import echo
from . import conj
from . import phonet
from . import mfsp
class TestDictionary (unittest.TestCase):
"Test du correcteur orthographique"
|
<
<
<
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! python3
"""
Grammar checker tests for French language
"""
import unittest
from ..graphspell.ibdawg import IBDAWG
from . import conj
from . import phonet
from . import mfsp
class TestDictionary (unittest.TestCase):
"Test du correcteur orthographique"
|