aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--markdown/__init__.py1
-rwxr-xr-xrun-tests.py2
-rw-r--r--tests/test_apis.py1
3 files changed, 1 insertions, 3 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py
index 1dbaddd..3fd5efa 100644
--- a/markdown/__init__.py
+++ b/markdown/__init__.py
@@ -33,7 +33,6 @@ License: BSD (see LICENSE for details).
from __future__ import absolute_import
from __future__ import unicode_literals
from .__version__ import version, version_info
-import re
import codecs
import sys
import logging
diff --git a/run-tests.py b/run-tests.py
index 7756e4d..4f13eb5 100755
--- a/run-tests.py
+++ b/run-tests.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
import tests
-import os, sys, getopt
+import os, sys
if len(sys.argv) > 1 and sys.argv[1] == "update":
if len(sys.argv) > 2:
diff --git a/tests/test_apis.py b/tests/test_apis.py
index e0f7a03..dd232b3 100644
--- a/tests/test_apis.py
+++ b/tests/test_apis.py
@@ -9,7 +9,6 @@ Tests of the various APIs with the python markdown lib.
from __future__ import unicode_literals
import unittest
-import os
import sys
import types
import markdown