summaryrefslogtreecommitdiff
path: root/six.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-10-20 21:34:23 -0700
committerBenjamin Peterson <benjamin@python.org>2015-10-20 21:34:23 -0700
commit78833c7d06cc78585e03c97d49135615115bbe6e (patch)
tree18f57e1fd5ac1d745c3c24b90f5a153d8dd2e5dc /six.py
parent06510cdc7bcca304dae7af1a67165512aa378bf7 (diff)
downloadsix-git-78833c7d06cc78585e03c97d49135615115bbe6e.tar.gz
add License goop to all python files (fixes #137)
Diffstat (limited to 'six.py')
-rw-r--r--six.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/six.py b/six.py
index 190c023..56e4272 100644
--- a/six.py
+++ b/six.py
@@ -1,5 +1,3 @@
-"""Utilities for writing code that runs on Python 2 and 3"""
-
# Copyright (c) 2010-2015 Benjamin Peterson
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -20,6 +18,8 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
+"""Utilities for writing code that runs on Python 2 and 3"""
+
from __future__ import absolute_import
import functools