diff options
author | Shantanu <hauntsaninja@users.noreply.github.com> | 2020-03-17 14:43:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 23:43:20 +0200 |
commit | d469d666b874ae746ca9a17bbfc9dbbf6fb2d6bc (patch) | |
tree | 216b07e48576da3df0db4bda9299ab5b4c7e5968 /Lib/tempfile.py | |
parent | 6b97598fb66a08d0f36e4d73bffea5c1b17740d4 (diff) | |
download | cpython-git-d469d666b874ae746ca9a17bbfc9dbbf6fb2d6bc.tar.gz |
bpo-39719: Remove softspace from tempfile.SpooledTemporaryFile (GH-18599)
Diffstat (limited to 'Lib/tempfile.py')
-rw-r--r-- | Lib/tempfile.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py index 448163f043..b27165bb0f 100644 --- a/Lib/tempfile.py +++ b/Lib/tempfile.py @@ -749,10 +749,6 @@ class SpooledTemporaryFile: def seek(self, *args): self._file.seek(*args) - @property - def softspace(self): - return self._file.softspace - def tell(self): return self._file.tell() |