src/cpython/ssl

Lets

OPENSSL_VERSION: string = to(getAttr(pyImport("ssl"), "OPENSSL_VERSION"), string)
OPENSSL_VERSION_NUMBER: int = to(getAttr(pyImport("ssl"),
    "OPENSSL_VERSION_NUMBER"), int)
SSL_ERROR_EOF: int = to(getAttr(pyImport("ssl"), "SSL_ERROR_EOF"), int)
SSL_ERROR_INVALID_ERROR_CODE: int = to(getAttr(pyImport("ssl"),
    "SSL_ERROR_INVALID_ERROR_CODE"), int)
SSL_ERROR_SSL: int = to(getAttr(pyImport("ssl"), "SSL_ERROR_SSL"), int)
SSL_ERROR_SYSCALL: int = to(getAttr(pyImport("ssl"), "SSL_ERROR_SYSCALL"), int)
SSL_ERROR_WANT_CONNECT: int = to(getAttr(pyImport("ssl"),
    "SSL_ERROR_WANT_CONNECT"), int)
SSL_ERROR_WANT_READ: int = to(getAttr(pyImport("ssl"), "SSL_ERROR_WANT_READ"),
                              int)
SSL_ERROR_WANT_WRITE: int = to(getAttr(pyImport("ssl"), "SSL_ERROR_WANT_WRITE"),
                               int)
SSL_ERROR_WANT_X509_LOOKUP: int = to(getAttr(pyImport("ssl"),
    "SSL_ERROR_WANT_X509_LOOKUP"), int)
SSL_ERROR_ZERO_RETURN: int = to(getAttr(pyImport("ssl"), "SSL_ERROR_ZERO_RETURN"),
                                int)