當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python contextvars.ContextVar.reset用法及代碼示例


用法:

reset(token)

將上下文變量重置為使用創建tokenContextVar.set() 之前的值。

例如:

var = ContextVar('var')

token = var.set('new value')
# code that uses 'var'; var.get() returns 'new value'.
var.reset(token)

# After the reset call the var has no value again, so
# var.get() would raise a LookupError.

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 contextvars.ContextVar.reset。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。