bpo-39719: Remove softspace from tempfile.SpooledTemporaryFile (GH-18599)
This commit is contained in:
parent
6b97598fb6
commit
d469d666b8
|
@ -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()
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Remove :meth:`tempfile.SpooledTemporaryFile.softspace` as files no longer have the ``softspace`` attribute in Python 3. Patch by Shantanu.
|
Loading…
Reference in New Issue