From 715a1aa101c4310ed117b38f6805b9b0fd66c778 Mon Sep 17 00:00:00 2001 From: JackDandy Date: Tue, 12 Jan 2016 01:45:01 +0000 Subject: [PATCH] Update Six compatibility library 1.9.0 (r400) to 1.10.0 (r405). --- CHANGES.md | 1 + lib/six.py | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 4219f3fb..bab0e65d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -18,6 +18,7 @@ * Update profilehooks 1.4 to 1.8.2.dev0 (ee3f1a8) * Update Requests library 2.7.0 (5d6d1bc) to 2.9.1 (a1c9b84) * Update SimpleJSON library 3.8.0 (a37a9bd) to 3.8.1 (6022794) +* Update Six compatibility library 1.9.0 (r400) to 1.10.0 (r405) ### 0.11.0 (2016-01-10 22:30:00 UTC) diff --git a/lib/six.py b/lib/six.py index a104cb87..56e4272c 100644 --- a/lib/six.py +++ b/lib/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 @@ -29,7 +29,7 @@ import sys import types __author__ = "Benjamin Peterson " -__version__ = "1.9.0" +__version__ = "1.10.0" # Useful for very coarse version differentiation.