aboutsummaryrefslogtreecommitdiffstats
path: root/utils.py
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2016-02-04 20:06:49 -0500
committerThibaut Horel <thibaut.horel@gmail.com>2016-02-04 20:06:49 -0500
commit5af5043ac67529aa2ecc05c6a3bbc22a4419b9cb (patch)
tree6d73e11141cf2ffbec11561e44d5c60f0dc75131 /utils.py
parentda7359cd452f2ded9e05e753fb125508343b8587 (diff)
downloadanonbib-5af5043ac67529aa2ecc05c6a3bbc22a4419b9cb.tar.gz
Split author
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils.py b/utils.py
index 4d4b583..e62c446 100644
--- a/utils.py
+++ b/utils.py
@@ -1,6 +1,7 @@
import re
import os
+PRINTINGCHARS = "\t\n\r"+"".join(map(chr,range(32, 127)))
ALLCHARS = "".join(map(chr,range(256)))
RE_LONE_AMP = re.compile(r'&([^a-z0-9])')
RE_LONE_I = re.compile(r'\\i([^a-z0-9])')