Repository: incubator-beam Updated Branches: refs/heads/python-sdk 009230e8b -> 2649372d6
Use cStringIO instead of StringIO Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/acf530e1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/acf530e1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/acf530e1 Branch: refs/heads/python-sdk Commit: acf530e11d90dc586b5b5f822746ef1bca0ac77c Parents: 009230e Author: Charles Chen <[email protected]> Authored: Fri Sep 9 14:07:00 2016 -0700 Committer: Charles Chen <[email protected]> Committed: Fri Sep 9 14:07:00 2016 -0700 ---------------------------------------------------------------------- sdks/python/apache_beam/io/gcsio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/acf530e1/sdks/python/apache_beam/io/gcsio.py ---------------------------------------------------------------------- diff --git a/sdks/python/apache_beam/io/gcsio.py b/sdks/python/apache_beam/io/gcsio.py index 6d02a25..339fd41 100644 --- a/sdks/python/apache_beam/io/gcsio.py +++ b/sdks/python/apache_beam/io/gcsio.py @@ -21,13 +21,13 @@ This library evolved from the Google App Engine GCS client available at https://github.com/GoogleCloudPlatform/appengine-gcs-client. """ +import cStringIO as StringIO import errno import fnmatch import logging import multiprocessing import os import re -import StringIO import threading import traceback
