diff options
| author | Carson Gee <x@carsongee.com> | 2015-06-10 10:43:49 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-06-12 10:17:21 -0400 |
| commit | e93e0c03b28137e26f9249e0b7c458b0d667a74e (patch) | |
| tree | a6bae160007e57a3085c0c98fecf0b603e522ce7 /docs/ref/files | |
| parent | 3c593ba79e5bdee46419e2aa6b14e7ce8bc01758 (diff) | |
Fixed #24963 -- Added File.seekable() on Python 3.
Diffstat (limited to 'docs/ref/files')
| -rw-r--r-- | docs/ref/files/file.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/ref/files/file.txt b/docs/ref/files/file.txt index fd5a915426..74343d10f8 100644 --- a/docs/ref/files/file.txt +++ b/docs/ref/files/file.txt @@ -89,7 +89,12 @@ The ``File`` Class the following attributes and methods of its ``file`` object: ``encoding``, ``fileno``, ``flush``, ``isatty``, ``newlines``, ``read``, ``readinto``, ``readlines``, ``seek``, ``softspace``, ``tell``, - ``truncate``, ``writelines``, ``xreadlines``. + ``truncate``, ``writelines``, ``xreadlines``. If you are using + Python 3, the ``seekable`` method is also available. + + .. versionchanged:: 1.9 + + The ``seekable`` method was added. .. currentmodule:: django.core.files.base |
