summaryrefslogtreecommitdiff
path: root/docs/ref/files
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-04-26 16:00:15 +0200
committerClaude Paroz <claude@2xlibre.net>2014-04-26 16:03:40 +0200
commite441cebce340f54741be957817cc034000deab3c (patch)
tree0a1b9730a86f6a3660961e220cd099494f9fd8f2 /docs/ref/files
parentabd68b5affaec35e941b49f1b0a4cb8d70c22d7b (diff)
[1.7.x] Updated doc links to point to Python 3 documentation
Backport of 680a0f08b from master.
Diffstat (limited to 'docs/ref/files')
-rw-r--r--docs/ref/files/file.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/ref/files/file.txt b/docs/ref/files/file.txt
index c2208baa47..6874936eab 100644
--- a/docs/ref/files/file.txt
+++ b/docs/ref/files/file.txt
@@ -11,8 +11,8 @@ The ``File`` Class
.. class:: File(file_object)
- The :class:`File` class is a thin wrapper around Python's :py:ref:`built-in
- file object<bltin-file-objects>` with some Django-specific additions.
+ The :class:`File` class is a thin wrapper around a Python
+ :py:term:`file object` with some Django-specific additions.
Internally, Django uses this class when it needs to represent a file.
:class:`File` objects have the following attributes and methods:
@@ -28,8 +28,7 @@ The ``File`` Class
.. attribute:: file
- The underlying :py:ref:`built-in file object<bltin-file-objects>` that
- this class wraps.
+ The underlying :py:term:`file object` that this class wraps.
.. attribute:: mode