文件操作 - base.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3/dist-packages/botocore/retries/base.py
编辑文件内容
class BaseRetryBackoff: def delay_amount(self, context): """Calculate how long we should delay before retrying. :type context: RetryContext """ raise NotImplementedError("delay_amount") class BaseRetryableChecker: """Base class for determining if a retry should happen. This base class checks for specific retryable conditions. A single retryable checker doesn't necessarily indicate a retry will happen. It's up to the ``RetryPolicy`` to use its ``BaseRetryableCheckers`` to make the final decision on whether a retry should happen. """ def is_retryable(self, context): """Returns True if retryable, False if not. :type context: RetryContext """ raise NotImplementedError("is_retryable")
修改文件时间
将文件时间修改为当前时间的前一年
删除文件