﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
8383	TemporaryUploadedFile.seek function signature doesn't match what's expected	vomjom	nobody	"In django/core/files/uploadedfile.py, TemporaryUploadedFile's seek function only takes an offset, but as in shown in http://docs.python.org/lib/bltin-file-objects.html  it should also takes a whence argument.

It'd be far better if TemporaryUploadedFile's file-object functions were more similar to InMemoryUploadedFile in that they would pass all the arguments, like:

{{{
def seek(self, *args, **kwargs):
    return self._file.seek(*args, **kwargs)
}}}

And so on for the rest of the functions."		closed	File uploads/storage	dev		duplicate		vomjom@…	Unreviewed	0	0	0	0	0	0
