|
def | __init__ |
|
def | temporary_file_path |
|
def | close |
|
def | __init__ |
|
def | __repr__ |
|
def | __init__ |
|
def | __str__ |
|
def | __unicode__ |
|
def | __repr__ |
|
def | __nonzero__ |
|
def | __len__ |
|
def | chunks |
|
def | multiple_chunks |
|
def | __iter__ |
|
def | open |
|
def | close |
|
def | __iter__ |
|
|
| size |
|
| content_type |
|
| charset |
|
| file |
|
| name |
|
| mode |
|
int | DEFAULT_CHUNK_SIZE = 64 |
|
int | DEFAULT_CHUNK_SIZE = 64 |
|
| name = property(_get_name, _set_name) |
|
| size = property(_get_size, _set_size) |
|
| closed = property(_get_closed) |
|
| encoding = property(lambda self: self.file.encoding) |
|
| fileno = property(lambda self: self.file.fileno) |
|
| flush = property(lambda self: self.file.flush) |
|
| isatty = property(lambda self: self.file.isatty) |
|
| newlines = property(lambda self: self.file.newlines) |
|
| read = property(lambda self: self.file.read) |
|
| readinto = property(lambda self: self.file.readinto) |
|
| readline = property(lambda self: self.file.readline) |
|
| readlines = property(lambda self: self.file.readlines) |
|
| seek = property(lambda self: self.file.seek) |
|
| softspace = property(lambda self: self.file.softspace) |
|
| tell = property(lambda self: self.file.tell) |
|
| truncate = property(lambda self: self.file.truncate) |
|
| write = property(lambda self: self.file.write) |
|
| writelines = property(lambda self: self.file.writelines) |
|
| xreadlines = property(lambda self: self.file.xreadlines) |
|
A file uploaded to a temporary location (i.e. stream-to-disk).
def google.appengine._internal.django.core.files.uploadedfile.TemporaryUploadedFile.temporary_file_path |
( |
|
self | ) |
|
Returns the full path of this file.
The documentation for this class was generated from the following file:
- code/googleappengine-read-only/python/google/appengine/_internal/django/core/files/uploadedfile.py