Commit 26bc3725 authored by Denis Bilenko's avatar Denis Bilenko

removed unused deprecated 'wfile' property from WSGIHandler

parent 3a7dc2df
...@@ -178,14 +178,6 @@ class WSGIHandler(object): ...@@ -178,14 +178,6 @@ class WSGIHandler(object):
else: else:
self.rfile = rfile self.rfile = rfile
@property
def wfile(self):
# DEPRECATED, UNTESTED, TO BE REMOVED
wfile = getattr(self, '_wfile', None)
if wfile is None:
wfile = self._wfile = self.socket.makefile('wb', 0)
return wfile
def handle(self): def handle(self):
try: try:
while self.socket is not None: while self.socket is not None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment