summaryrefslogtreecommitdiff
path: root/django/core/files/utils.py
diff options
context:
space:
mode:
authorJosh Schneier <josh.schneier@gmail.com>2017-04-26 14:44:07 -0400
committerTim Graham <timograham@gmail.com>2017-04-26 14:44:07 -0400
commit9b538badb1ae5d1e86779afb8be961ef5880a58a (patch)
tree0b27ed96edc8173e21b31a775dc72bb02cbc0821 /django/core/files/utils.py
parentf3ac398dd595c43f551502c742b0b3cbe8440e50 (diff)
downloaddjango-9b538badb1ae5d1e86779afb8be961ef5880a58a.tar.gz
Refs #23919 -- Removed File's Python 2 proxied methods.
Diffstat (limited to 'django/core/files/utils.py')
-rw-r--r--django/core/files/utils.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/core/files/utils.py b/django/core/files/utils.py
index 96bfbe46c2..de89607175 100644
--- a/django/core/files/utils.py
+++ b/django/core/files/utils.py
@@ -18,12 +18,10 @@ class FileProxyMixin:
readline = property(lambda self: self.file.readline)
readlines = property(lambda self: self.file.readlines)
seek = property(lambda self: self.file.seek)
- softspace = property(lambda self: self.file.softspace)
tell = property(lambda self: self.file.tell)
truncate = property(lambda self: self.file.truncate)
write = property(lambda self: self.file.write)
writelines = property(lambda self: self.file.writelines)
- xreadlines = property(lambda self: self.file.xreadlines)
@property
def closed(self):