summaryrefslogtreecommitdiff
path: root/docs/ref/files
diff options
context:
space:
mode:
authorCarson Gee <x@carsongee.com>2015-06-10 10:43:49 -0400
committerTim Graham <timograham@gmail.com>2015-06-12 10:17:21 -0400
commite93e0c03b28137e26f9249e0b7c458b0d667a74e (patch)
treea6bae160007e57a3085c0c98fecf0b603e522ce7 /docs/ref/files
parent3c593ba79e5bdee46419e2aa6b14e7ce8bc01758 (diff)
Fixed #24963 -- Added File.seekable() on Python 3.
Diffstat (limited to 'docs/ref/files')
-rw-r--r--docs/ref/files/file.txt7
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