diff options
author | Josh Schneier <josh.schneier@gmail.com> | 2017-04-26 14:44:07 -0400 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2017-04-26 14:44:07 -0400 |
commit | 9b538badb1ae5d1e86779afb8be961ef5880a58a (patch) | |
tree | 0b27ed96edc8173e21b31a775dc72bb02cbc0821 /django/core/files/utils.py | |
parent | f3ac398dd595c43f551502c742b0b3cbe8440e50 (diff) | |
download | django-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.py | 2 |
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): |