• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(302)  |  Call(208)  |  Derive(80)  |  Import(14)
Faux file object attached to a socket object.

src/i/r/ironruby-HEAD/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/ssl.py   ironruby(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject, _delegate_methods, error as socket_error
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
import errno
        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)
 
 
 

src/i/r/ironruby-HEAD/External.LCA_RESTRICTED/Languages/CPython/27/Lib/ssl.py   ironruby(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject, _delegate_methods, error as socket_error
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
import errno
        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)
 
 
 

src/p/y/pyvm-HEAD/projects/python_in_a_can/trunk/win32/python-2.7/Lib/ssl.py   pyvm(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject, _delegate_methods, error as socket_error
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
import errno
        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)
 
 
 

src/s/t/stackless-HEAD/Lib/ssl.py   stackless(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject, _delegate_methods, error as socket_error
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
import errno
        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)
 
 
 

src/p/y/python2.6-cmake-HEAD/Lib/ssl.py   python2.6-cmake(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject, _delegate_methods
from socket import error as socket_error
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
        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)
 
 
 

src/s/l/SlopPy-HEAD/Lib/ssl.py   SlopPy(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
 
        from the socket module."""
 
        self._makefile_refs += 1
        return _fileobject(self, mode, bufsize)
 
 
 

src/i/n/IncPy-HEAD/Lib/ssl.py   IncPy(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
 
        from the socket module."""
 
        self._makefile_refs += 1
        return _fileobject(self, mode, bufsize)
 
 
 

src/u/n/unladen-swallow-HEAD/Lib/ssl.py   unladen-swallow(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
 
        from the socket module."""
 
        self._makefile_refs += 1
        return _fileobject(self, mode, bufsize)
 
 
 

src/p/y/python2.6-HEAD/Lib/ssl.py   python2.6(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
 
        from the socket module."""
 
        self._makefile_refs += 1
        return _fileobject(self, mode, bufsize)
 
 
 

src/p/y/pylibs-HEAD/pyssl/ssl/__init__.py   pylibs(Download)
     SSL_ERROR_EOF, \
     SSL_ERROR_INVALID_ERROR_CODE
 
from socket import socket, _fileobject
from socket import getnameinfo as _getnameinfo
import base64        # for DER-to-PEM translation
import select        # for handshake
    def makefile(self, mode='r', bufsize=-1):
 
        """Ouch.  Need to make and return a file-like object that
        works with the SSL connection."""
 
        self._makefile_refs += 1
        return _fileobject(self, mode, bufsize)

  1 | 2  Next