當前位置: 首頁>>代碼示例>>Python>>正文


Python _compat.bytes_to_str方法代碼示例

本文整理匯總了Python中gunicorn._compat.bytes_to_str方法的典型用法代碼示例。如果您正苦於以下問題:Python _compat.bytes_to_str方法的具體用法?Python _compat.bytes_to_str怎麽用?Python _compat.bytes_to_str使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gunicorn._compat的用法示例。


在下文中一共展示了_compat.bytes_to_str方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: env

# 需要導入模塊: from gunicorn import _compat [as 別名]
# 或者: from gunicorn._compat import bytes_to_str [as 別名]
def env(self):
        raw_env = self.settings['raw_env'].get()
        env = {}

        if not raw_env:
            return env

        for e in raw_env:
            s = _compat.bytes_to_str(e)
            try:
                k, v = s.split('=', 1)
            except ValueError:
                raise RuntimeError("environment setting %r invalid" % s)

            env[k] = v

        return env 
開發者ID:RoseOu,項目名稱:flasky,代碼行數:19,代碼來源:config.py

示例2: paste_global_conf

# 需要導入模塊: from gunicorn import _compat [as 別名]
# 或者: from gunicorn._compat import bytes_to_str [as 別名]
def paste_global_conf(self):
        raw_global_conf = self.settings['raw_paste_global_conf'].get()
        if raw_global_conf is None:
            return None

        global_conf = {}
        for e in raw_global_conf:
            s = _compat.bytes_to_str(e)
            try:
                k, v = re.split(r'(?<!\\)=', s, 1)
            except ValueError:
                raise RuntimeError("environment setting %r invalid" % s)
            k = k.replace('\\=', '=')
            v = v.replace('\\=', '=')
            global_conf[k] = v

        return global_conf 
開發者ID:Agentscreech,項目名稱:ShelbySearch,代碼行數:19,代碼來源:config.py

示例3: parse_headers

# 需要導入模塊: from gunicorn import _compat [as 別名]
# 或者: from gunicorn._compat import bytes_to_str [as 別名]
def parse_headers(self, data):
        headers = []

        # Split lines on \r\n keeping the \r\n on each line
        lines = [bytes_to_str(line) + "\r\n" for line in data.split(b"\r\n")]

        # Parse headers into key/value pairs paying attention
        # to continuation lines.
        while len(lines):
            if len(headers) >= self.limit_request_fields:
                raise LimitRequestHeaders("limit request headers fields")

            # Parse initial header name : value pair.
            curr = lines.pop(0)
            header_length = len(curr)
            if curr.find(":") < 0:
                raise InvalidHeader(curr.strip())
            name, value = curr.split(":", 1)
            name = name.rstrip(" \t").upper()
            if HEADER_RE.search(name):
                raise InvalidHeaderName(name)

            name, value = name.strip(), [value.lstrip()]

            # Consume value continuation lines
            while len(lines) and lines[0].startswith((" ", "\t")):
                curr = lines.pop(0)
                header_length += len(curr)
                if header_length > self.limit_request_field_size > 0:
                    raise LimitRequestHeaders("limit request headers "
                            + "fields size")
                value.append(curr)
            value = ''.join(value).rstrip()

            if header_length > self.limit_request_field_size > 0:
                raise LimitRequestHeaders("limit request headers fields size")
            headers.append((name, value))
        return headers 
開發者ID:RoseOu,項目名稱:flasky,代碼行數:40,代碼來源:message.py

示例4: address

# 需要導入模塊: from gunicorn import _compat [as 別名]
# 或者: from gunicorn._compat import bytes_to_str [as 別名]
def address(self):
        s = self.settings['bind'].get()
        return [util.parse_address(_compat.bytes_to_str(bind)) for bind in s] 
開發者ID:RoseOu,項目名稱:flasky,代碼行數:5,代碼來源:config.py


注:本文中的gunicorn._compat.bytes_to_str方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。