PythonのGoogleAppEngineアプリケーションでsudを使用しようとしています。これはトレースバックです:
client = Client(url)
File "/base/data/home/apps/sandbox/test.349741318547153856/suds/client.py",
line 109, in __init__
options.cache = ObjectCache(days=1)
File "/base/data/home/apps/sandbox/test.349741318547153856/suds/cache.py",
line 141, in __init__
location = os.path.join(tmp(), 'suds')
File "/base/python_runtime/python_dist/lib/python2.5/tempfile.py",
line 45, in PlaceHolder
raise NotImplementedError("Only tempfile.TemporaryFile is
available for use")
NotImplementedError: Only tempfile.TemporaryFile is available for use
client.pyで109行目を変更してみました:
options.cache = ObjectCache(days=1)
に:
options.cache = None
現在は機能していますが、将来何かに影響を与える可能性があるかどうかはわかりません。
誰かがここで私を助けてくれるなら本当に感謝しています。
前もって感謝します。