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


Python _internal._missing方法代碼示例

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


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

示例1: pop

# 需要導入模塊: from werkzeug import _internal [as 別名]
# 或者: from werkzeug._internal import _missing [as 別名]
def pop(self, key, default=_missing):
        """Pop the first item for a list on the dict.  Afterwards the
        key is removed from the dict, so additional values are discarded:

        >>> d = MultiDict({"foo": [1, 2, 3]})
        >>> d.pop("foo")
        1
        >>> "foo" in d
        False

        :param key: the key to pop.
        :param default: if provided the value to return if the key was
                        not in the dictionary.
        """
        try:
            return dict.pop(self, key)[0]
        except KeyError as e:
            if default is not _missing:
                return default
            raise exceptions.BadRequestKeyError(str(e)) 
開發者ID:jpush,項目名稱:jbox,代碼行數:22,代碼來源:datastructures.py

示例2: pop

# 需要導入模塊: from werkzeug import _internal [as 別名]
# 或者: from werkzeug._internal import _missing [as 別名]
def pop(self, key, default=_missing):
        """Pop the first item for a list on the dict.  Afterwards the
        key is removed from the dict, so additional values are discarded:

        >>> d = MultiDict({"foo": [1, 2, 3]})
        >>> d.pop("foo")
        1
        >>> "foo" in d
        False

        :param key: the key to pop.
        :param default: if provided the value to return if the key was
                        not in the dictionary.
        """
        try:
            lst = dict.pop(self, key)

            if len(lst) == 0:
                raise exceptions.BadRequestKeyError()

            return lst[0]
        except KeyError as e:
            if default is not _missing:
                return default
            raise exceptions.BadRequestKeyError(str(e)) 
開發者ID:ryfeus,項目名稱:lambda-packs,代碼行數:27,代碼來源:datastructures.py

示例3: pop

# 需要導入模塊: from werkzeug import _internal [as 別名]
# 或者: from werkzeug._internal import _missing [as 別名]
def pop(self, key=None, default=_missing):
        """Removes and returns a key or index.

        :param key: The key to be popped.  If this is an integer the item at
                    that position is removed, if it's a string the value for
                    that key is.  If the key is omitted or `None` the last
                    item is removed.
        :return: an item.
        """
        if key is None:
            return self._list.pop()
        if isinstance(key, integer_types):
            return self._list.pop(key)
        try:
            rv = self[key]
            self.remove(key)
        except KeyError:
            if default is not _missing:
                return default
            raise
        return rv 
開發者ID:jmankoff,項目名稱:data,代碼行數:23,代碼來源:datastructures.py


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