From 299bb08bfe203dff0843b9ec9b9c565a63be1c4c Mon Sep 17 00:00:00 2001 From: Dmitry Shachnev Date: Sat, 23 Mar 2013 15:11:56 +0400 Subject: Remove some unused imports --- markdown/__init__.py | 1 - run-tests.py | 2 +- tests/test_apis.py | 1 - 3 files changed, 1 insertion(+), 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 -- cgit v1.2.3