当前位置: 首页>>代码示例>>Python>>正文


Python Token.ZeroWidthEscape方法代码示例

本文整理汇总了Python中prompt_toolkit.token.Token.ZeroWidthEscape方法的典型用法代码示例。如果您正苦于以下问题:Python Token.ZeroWidthEscape方法的具体用法?Python Token.ZeroWidthEscape怎么用?Python Token.ZeroWidthEscape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在prompt_toolkit.token.Token的用法示例。


在下文中一共展示了Token.ZeroWidthEscape方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: token_list_len

# 需要导入模块: from prompt_toolkit.token import Token [as 别名]
# 或者: from prompt_toolkit.token.Token import ZeroWidthEscape [as 别名]
def token_list_len(tokenlist):
    """
    Return the amount of characters in this token list.

    :param tokenlist: List of (token, text) or (token, text, mouse_handler)
                      tuples.
    """
    ZeroWidthEscape = Token.ZeroWidthEscape
    return sum(len(item[1]) for item in tokenlist if item[0] != ZeroWidthEscape) 
开发者ID:chrisjim316,项目名称:Liljimbo-Chatbot,代码行数:11,代码来源:utils.py

示例2: token_list_width

# 需要导入模块: from prompt_toolkit.token import Token [as 别名]
# 或者: from prompt_toolkit.token.Token import ZeroWidthEscape [as 别名]
def token_list_width(tokenlist):
    """
    Return the character width of this token list.
    (Take double width characters into account.)

    :param tokenlist: List of (token, text) or (token, text, mouse_handler)
                      tuples.
    """
    ZeroWidthEscape = Token.ZeroWidthEscape
    return sum(get_cwidth(c) for item in tokenlist for c in item[1] if item[0] != ZeroWidthEscape) 
开发者ID:chrisjim316,项目名称:Liljimbo-Chatbot,代码行数:12,代码来源:utils.py

示例3: token_list_to_text

# 需要导入模块: from prompt_toolkit.token import Token [as 别名]
# 或者: from prompt_toolkit.token.Token import ZeroWidthEscape [as 别名]
def token_list_to_text(tokenlist):
    """
    Concatenate all the text parts again.
    """
    ZeroWidthEscape = Token.ZeroWidthEscape
    return ''.join(item[1] for item in tokenlist if item[0] != ZeroWidthEscape) 
开发者ID:chrisjim316,项目名称:Liljimbo-Chatbot,代码行数:8,代码来源:utils.py


注:本文中的prompt_toolkit.token.Token.ZeroWidthEscape方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。