- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在做一个项目,我们想要验证一个参数是否可以在必要时作为异常实际引发。我们采用了以下方法:
def is_raisable(exception):
funcs = (isinstance, issubclass)
return any(f(exception, BaseException) for f in funcs)
这处理以下用例,满足我们的需求(目前):
is_raisable(KeyError) # the exception type, which can be raised
is_raisable(KeyError("key")) # an exception instance, which can be raised
但是,对于旧版本 (2.x) 中可提升的旧式类,它会失败。我们尝试以这种方式解决它:
IGNORED_EXCEPTIONS = [
KeyboardInterrupt,
MemoryError,
StopIteration,
SystemError,
SystemExit,
GeneratorExit
]
try:
IGNORED_EXCEPTIONS.append(StopAsyncIteration)
except NameError:
pass
IGNORED_EXCEPTIONS = tuple(IGNORED_EXCEPTIONS)
def is_raisable(exception, exceptions_to_exclude=IGNORED_EXCEPTIONS):
funcs_to_try = (isinstance, issubclass)
can_raise = False
try:
can_raise = issubclass(exception, BaseException)
except TypeError:
# issubclass doesn't like when the first parameter isn't a type
pass
if can_raise or isinstance(exception, BaseException):
return True
# Handle old-style classes
try:
raise exception
except TypeError as e:
# It either couldn't be raised, or was a TypeError that wasn't
# detected before this (impossible?)
return exception is e or isinstance(exception, TypeError)
except exceptions_to_exclude as e:
# These are errors that are unlikely to be explicitly tested here,
# and if they were we would have caught them before, so percolate up
raise
except:
# Must be bare, otherwise no way to reliably catch an instance of an
# old-style class
return True
这通过了我们所有的测试,但它不是很漂亮,如果我们正在考虑一些我们不希望用户传递的东西,但仍然会让人觉得很老套,但无论如何都可能会被其他人扔进去原因。
def test_is_raisable_exception(self):
"""Test that an exception is raisable."""
self.assertTrue(is_raisable(Exception))
def test_is_raisable_instance(self):
"""Test that an instance of an exception is raisable."""
self.assertTrue(is_raisable(Exception()))
def test_is_raisable_old_style_class(self):
"""Test that an old style class is raisable."""
class A: pass
self.assertTrue(is_raisable(A))
def test_is_raisable_old_style_class_instance(self):
"""Test that an old style class instance is raisable."""
class A: pass
self.assertTrue(is_raisable(A()))
def test_is_raisable_excluded_type_background(self):
"""Test that an exception we want to ignore isn't caught."""
class BadCustomException:
def __init__(self):
raise KeyboardInterrupt
self.assertRaises(KeyboardInterrupt, is_raisable, BadCustomException)
def test_is_raisable_excluded_type_we_want(self):
"""Test that an exception we normally want to ignore can be not
ignored."""
class BadCustomException:
def __init__(self):
raise KeyboardInterrupt
self.assertTrue(is_raisable(BadCustomException, exceptions_to_exclude=()))
def test_is_raisable_not_raisable(self):
"""Test that something not raisable isn't considered rasiable."""
self.assertFalse(is_raisable("test"))
不幸的是,我们需要继续支持 Python 2.6+(很快只支持 Python 2.7,所以如果您有一个在 2.6 中不起作用的解决方案,那很好但不理想)和 Python 3.x。理想情况下,我想在不对版本进行显式测试的情况下执行此操作,但如果没有其他方法可以执行此操作,那也没关系。
最后,我的问题是:
键盘中断
。TypeError
(一种因为它有效,一种因为它无效)感觉也很奇怪(但为了 2.x 支持,我不得不退而求其次)。最佳答案
在 Python 中测试大多数事情的方法是尝试
,然后看看是否出现异常。
这对 raise
很有效。如果某些内容不可引发,您将得到一个 TypeError
;否则,您将得到您筹集的资金(或您筹集的资金的一个实例)。这对 2.6(甚至 2.3)和 3.6 一样有效。字符串作为 2.6 中的异常将被引发;不从 3.6 中的 BaseException
继承的类型将不可引发;等等——你会得到正确的结果。无需检查 BaseException
或以不同方式处理旧式和新式类;让 raise
做它做的事。
当然我们确实需要特例TypeError
,因为它会落在错误的地方。但是因为我们不关心 pre-2.4,所以不需要比 isinstance
和 issubclass
测试更复杂的东西;除了 return False
之外,没有奇怪的对象可以做任何事情了。一个棘手的问题(我最初弄错了;感谢 user2357112 捕获了它)是你必须先进行 isinstance
测试,因为如果对象是 TypeError
例如,issubclass
将引发 TypeError
,因此我们需要短路并返回 True
而无需尝试。
另一个问题是处理我们不想意外捕获的任何特殊异常,例如 KeyboardInterrupt
和 SystemError
。但幸运的是,these all go back to before 2.6 .两者都是isinstance
/issubclass
和 except
clauses (只要您不关心捕获异常值,我们不关心)可以使用在 3.x 中也适用的语法获取元组。由于要求我们为这些情况返回 True
,因此我们需要在尝试引发它们之前对其进行测试。但它们都是 BaseException
的子类,所以我们不必担心经典类或类似的东西。
所以:
def is_raisable(ex, exceptions_to_exclude=IGNORED_EXCEPTIONS):
try:
if isinstance(ex, TypeError) or issubclass(ex, TypeError):
return True
except TypeError:
pass
try:
if isinstance(ex, exceptions_to_exclude) or issubclass(ex, exceptions_to_exclude):
return True
except TypeError:
pass
try:
raise ex
except exceptions_to_exclude:
raise
except TypeError:
return False
except:
return True
这没有通过您编写的测试套件,但我认为那是因为您的某些测试不正确。我假设您希望 is_raisable
对在当前 Python 版本中可提升的对象为真,而不是在任何支持的版本中可提升的对象> 即使它们在当前版本中不可提升。您不希望 is_raisable('spam')
在 3.6 中返回 True
然后尝试 raise 'spam'
会失败,对吧?所以,在我的脑海中:
not_raisable
测试引发了一个字符串——但在 2.6 中是可引发的。excluded_type
测试引发了一个类,Python 2.x 可以通过实例化该类来处理该类,但这不是必需的,并且 CPython 2.6 进行了优化将在这种情况下触发。old_style
测试在 3.6 中引发新式类,它们不是 BaseException
的子类,因此它们不可引发。如果不为 2.6、3.x,甚至 2.7,甚至可能为两个 2.x 版本的不同实现编写单独的测试,我不确定如何编写正确的测试(尽管您可能没有有没有用户,比如说,Jython?)。
关于python - 检查是否可以在任何版本中引发某些问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49397153/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!