1 https://github.com/leohemsted/smartypants.py/issues/14
2 https://github.com/leohemsted/smartypants.py/pull/13
4 --- smartypants.py-2.0.1/smartypants.py.orig
5 +++ smartypants.py-2.0.1/smartypants.py
9 # Special case: single-character ' token
10 - if re.match("\S", prev_token_last_char):
11 + if re.match(r"\S", prev_token_last_char):
16 # Special case: single-character " token
17 - if re.match("\S", prev_token_last_char):
18 + if re.match(r"\S", prev_token_last_char):