From fdb0e481a5f2fc8edd376473573ba03cbc96e638 Mon Sep 17 00:00:00 2001 From: noah morrison Date: Sat, 2 May 2015 21:23:58 -0400 Subject: [PATCH] Remove comments above import statement I don't think there is a better way, And this really isn't all that bad. --- chevron/main.py | 5 ----- chevron/renderer.py | 5 ----- 2 files changed, 10 deletions(-) diff --git a/chevron/main.py b/chevron/main.py index 8da3fd7..1c38281 100755 --- a/chevron/main.py +++ b/chevron/main.py @@ -5,11 +5,6 @@ try: except ImportError: # not tested import json -# -# Python 2 and 3, module and script compatability -# If you know a better way please tell me :( -# - try: from .renderer import render except (ValueError, SystemError): # python 2 diff --git a/chevron/renderer.py b/chevron/renderer.py index 635e80f..cb8605d 100644 --- a/chevron/renderer.py +++ b/chevron/renderer.py @@ -1,11 +1,6 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -# -# Python 2 and 3, module and script compatability -# If you know a better way please tell me :( -# - try: from .tokenizer import tokenize except (ValueError, SystemError): # python 2 -- 2.47.3