From 0d7b6ce135827c46770b34f6515e515c1f6193c6 Mon Sep 17 00:00:00 2001 From: Jukka Lehtosalo Date: Fri, 8 Jan 2016 15:21:11 +0000 Subject: [PATCH] Fix Python 3 six.moves This was breaking mypy Travis build. --- third_party/3/six/moves.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/third_party/3/six/moves.pyi b/third_party/3/six/moves.pyi index 790253e09..b0cc062ba 100644 --- a/third_party/3/six/moves.pyi +++ b/third_party/3/six/moves.pyi @@ -20,5 +20,5 @@ def zip(iter1: Iterable[_T1], iter2: Iterable[_T2], iter3: Iterable[_T3], _T3, _T4]]: ... # TODO more than four iterables # For re-export. -import cStringIO as cStringIO -import cPickle as cPickle +from io import StringIO as cStringIO +import pickle as cPickle