本文整理匯總了Python中pip._vendor.lockfile.LockError方法的典型用法代碼示例。如果您正苦於以下問題:Python lockfile.LockError方法的具體用法?Python lockfile.LockError怎麽用?Python lockfile.LockError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pip._vendor.lockfile
的用法示例。
在下文中一共展示了lockfile.LockError方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: get
# 需要導入模塊: from pip._vendor import lockfile [as 別名]
# 或者: from pip._vendor.lockfile import LockError [as 別名]
def get(self, *args, **kwargs):
# If we don't have a directory, then the cache should be a no-op.
if self.directory is None:
return
try:
return super(SafeFileCache, self).get(*args, **kwargs)
except (LockError, OSError, IOError):
# We intentionally silence this error, if we can't access the cache
# then we can just skip caching and process the request as if
# caching wasn't enabled.
pass
示例2: set
# 需要導入模塊: from pip._vendor import lockfile [as 別名]
# 或者: from pip._vendor.lockfile import LockError [as 別名]
def set(self, *args, **kwargs):
# If we don't have a directory, then the cache should be a no-op.
if self.directory is None:
return
try:
return super(SafeFileCache, self).set(*args, **kwargs)
except (LockError, OSError, IOError):
# We intentionally silence this error, if we can't access the cache
# then we can just skip caching and process the request as if
# caching wasn't enabled.
pass
示例3: delete
# 需要導入模塊: from pip._vendor import lockfile [as 別名]
# 或者: from pip._vendor.lockfile import LockError [as 別名]
def delete(self, *args, **kwargs):
# If we don't have a directory, then the cache should be a no-op.
if self.directory is None:
return
try:
return super(SafeFileCache, self).delete(*args, **kwargs)
except (LockError, OSError, IOError):
# We intentionally silence this error, if we can't access the cache
# then we can just skip caching and process the request as if
# caching wasn't enabled.
pass