summaryrefslogtreecommitdiff
path: root/docs/ref/files/storage.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/files/storage.txt')
-rw-r--r--docs/ref/files/storage.txt8
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/ref/files/storage.txt b/docs/ref/files/storage.txt
index 61bf3c3951..0d0a11eb94 100644
--- a/docs/ref/files/storage.txt
+++ b/docs/ref/files/storage.txt
@@ -91,8 +91,6 @@ The ``Storage`` class
.. method:: get_accessed_time(name)
- .. versionadded:: 1.10
-
Returns a :class:`~datetime.datetime` of the last accessed time of the
file. For storage systems unable to return the last accessed time this
will raise :exc:`NotImplementedError`.
@@ -117,8 +115,6 @@ The ``Storage`` class
.. method:: get_created_time(name)
- .. versionadded:: 1.10
-
Returns a :class:`~datetime.datetime` of the creation time of the file.
For storage systems unable to return the creation time this will raise
:exc:`NotImplementedError`.
@@ -128,8 +124,6 @@ The ``Storage`` class
.. method:: get_modified_time(name)
- .. versionadded:: 1.10
-
Returns a :class:`~datetime.datetime` of the last modified time of the
file. For storage systems unable to return the last modified time this
will raise :exc:`NotImplementedError`.
@@ -144,8 +138,6 @@ The ``Storage`` class
.. method:: generate_filename(filename)
- .. versionadded:: 1.10
-
Validates the ``filename`` by calling :attr:`get_valid_name()` and
returns a filename to be passed to the :meth:`save` method.