This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nubirstein
Recipients Gary Fernie, martin.panter, nubirstein, terry.reedy
Date 2018-10-30.12:43:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1540903439.38.0.788709270274.issue26175@psf.upfronthosting.co.za>
In-reply-to
Content
My last comment meant to land somewhere else, but nonetheless it is related to this topic, so:

SpooledTemporaryFile class from lib/tempfile.py still does not implement seekable() method. It could be like this (just two lines of code and my Flask.Request tests with sending files started again to work on 3.7:

    def seekable(self):
        return self._file.seekable()

Is it possible to add this method?
History
Date User Action Args
2018-10-30 12:43:59nubirsteinsetrecipients: + nubirstein, terry.reedy, martin.panter, Gary Fernie
2018-10-30 12:43:59nubirsteinsetmessageid: <1540903439.38.0.788709270274.issue26175@psf.upfronthosting.co.za>
2018-10-30 12:43:59nubirsteinlinkissue26175 messages
2018-10-30 12:43:59nubirsteincreate