summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-08-20 09:43:07 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:10 -0400
commit1bb6ecf6d3b31bd606754ddbd1398550f605d3e5 (patch)
tree46d193785b40853a128f6ddefb08d92b3c3b37bd /docs
parent6a70cb53971a19f2d9e71d5ee24bfb0e844b4d9d (diff)
Refs #9893 -- Removed shims for lack of max_length support in file storage per deprecation timeline.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-file-storage.txt4
-rw-r--r--docs/ref/files/storage.txt8
2 files changed, 0 insertions, 12 deletions
diff --git a/docs/howto/custom-file-storage.txt b/docs/howto/custom-file-storage.txt
index 5140911591..9683dcd20a 100644
--- a/docs/howto/custom-file-storage.txt
+++ b/docs/howto/custom-file-storage.txt
@@ -114,7 +114,3 @@ free unique filename cannot be found, a :exc:`SuspiciousFileOperation
If a file with ``name`` already exists, an underscore plus a random 7 character
alphanumeric string is appended to the filename before the extension.
-
-.. versionchanged:: 1.8
-
- The ``max_length`` argument was added.
diff --git a/docs/ref/files/storage.txt b/docs/ref/files/storage.txt
index 8dd700484d..be9c554341 100644
--- a/docs/ref/files/storage.txt
+++ b/docs/ref/files/storage.txt
@@ -118,10 +118,6 @@ The Storage Class
7 character alphanumeric string is appended to the filename before
the extension.
- .. versionchanged:: 1.8
-
- The ``max_length`` argument was added.
-
.. method:: get_valid_name(name)
Returns a filename based on the ``name`` parameter that's suitable
@@ -168,10 +164,6 @@ The Storage Class
:class:`django.core.files.File` or of a subclass of
:class:`~django.core.files.File`.
- .. versionchanged:: 1.8
-
- The ``max_length`` argument was added.
-
.. method:: size(name)
Returns the total size, in bytes, of the file referenced by ``name``.