From 9b538badb1ae5d1e86779afb8be961ef5880a58a Mon Sep 17 00:00:00 2001 From: Josh Schneier Date: Wed, 26 Apr 2017 14:44:07 -0400 Subject: Refs #23919 -- Removed File's Python 2 proxied methods. --- django/core/files/utils.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'django/core/files/utils.py') 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): -- cgit v1.2.1