summaryrefslogtreecommitdiff
path: root/bs4/element.py
diff options
context:
space:
mode:
Diffstat (limited to 'bs4/element.py')
-rw-r--r--bs4/element.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bs4/element.py b/bs4/element.py
index ba70b24..fb74f9c 100644
--- a/bs4/element.py
+++ b/bs4/element.py
@@ -21,6 +21,10 @@ from bs4.dammit import EntitySubstitution
DEFAULT_OUTPUT_ENCODING = "utf-8"
PY3K = (sys.version_info[0] > 2)
+nonwhitespace_re = re.compile(r"\S+")
+
+# NOTE: This isn't used as of 4.7.0. I'm leaving it for a little bit on
+# the off chance someone imported it for their own use.
whitespace_re = re.compile(r"\s+")
def _alias(attr):