This repository was archived by the owner on Mar 18, 2019. It is now read-only.
This repository was archived by the owner on Mar 18, 2019. It is now read-only.
tempfile._TemporaryFileWrapper not available under Google Appengine #106
Closed
Description
Google appengine replaces the tempfile module with a custom one (since you can't write to the FS under "traditional" GAE): https://code.google.com/p/googleappengine/source/browse/trunk/python/google/appengine/dist/tempfile.py
However this module lacks the _TemporaryFileWrapper
on which utils.DownloadedFile
is based: https://github.com/core-api/python-client/blob/master/coreapi/utils.py#L119
Given that _TemporaryFileWrapper
is an undocumented API (class) IMHO the dependency on it should be removed.