Esempio n. 1
0
 def makefile(self, mode='r', bufsize=-1):
     """Make and return a file-like object that
     works with the SSL connection.  Just use the code
     from the socket module."""
     self._makefile_refs += 1
     # close=True so as to decrement the reference count when done with
     # the file-like object.
     return _fileobject(self, mode, bufsize, close=True)
Esempio n. 2
0
 def makefile(self, mode='r', bufsize=-1):
     """Make and return a file-like object that
     works with the SSL connection.  Just use the code
     from the socket module."""
     self._makefile_refs += 1
     # close=True so as to decrement the reference count when done with
     # the file-like object.
     return _fileobject(self, mode, bufsize, close=True)
Esempio n. 3
0
 def makefile(self, mode = 'r', bufsize = -1):
     return socket._fileobject(self, mode, bufsize)
Esempio n. 4
0
 def makefile(self, *args, **kwargs):
     return _fileobject(self, *args, **kwargs)
Esempio n. 5
0
 def makefile(self, mode='r', bufsize=-1):
     """Make and return a file-like object that
     works with the SSL connection.  Just use the code
     from the socket module."""
     self._makefile_refs += 1
     return _fileobject(self, mode, bufsize)
Esempio n. 6
0
 def makefile(self, mode='r', bufsize=-1):
     return DebugFileObject(socket._fileobject(self.dup(), mode, bufsize))
Esempio n. 7
0
 def makefile(self, mode='r', bufsize=-1):
     self._makefile_refs += 1
     return _fileobject(self, mode, bufsize, close=True)
Esempio n. 8
0
 def makefile(self, mode='r', bufsize=-1):
     self._makefile_refs += 1
     return _fileobject(self, mode, bufsize, close=True)
Esempio n. 9
0
 def makefile(self, *args, **kwargs):
     return _fileobject(self, *args, **kwargs)
Esempio n. 10
0
File: ssl.py Progetto: strogo/pylibs
 def makefile(self, mode='r', bufsize=-1):
     """Make and return a file-like object that
     works with the SSL connection.  Just use the code
     from the socket module."""
     self._makefile_refs += 1
     return _fileobject(self, mode, bufsize)