mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 09:21:37 +00:00
Merge pull request #71 from LuminosoInsight/pytest-fixes
Fix a deprecation warning by using raw strings
This commit is contained in:
commit
5f085b2c17
@ -6,8 +6,8 @@ from .transliterate import transliterate
|
|||||||
|
|
||||||
MARK_RE = regex.compile(r'[\p{Mn}\N{ARABIC TATWEEL}]', regex.V1)
|
MARK_RE = regex.compile(r'[\p{Mn}\N{ARABIC TATWEEL}]', regex.V1)
|
||||||
|
|
||||||
DIGIT_RE = regex.compile('\d')
|
DIGIT_RE = regex.compile(r'\d')
|
||||||
MULTI_DIGIT_RE = regex.compile('\d[\d.,]+')
|
MULTI_DIGIT_RE = regex.compile(r'\d[\d.,]+')
|
||||||
|
|
||||||
|
|
||||||
def preprocess_text(text, language):
|
def preprocess_text(text, language):
|
||||||
|
Loading…
Reference in New Issue
Block a user