如何在docutils中使用null
发布时间:2021-03-30 10:45:43 所属栏目:Python 来源:互联网
导读:我正在尝试在一个使用null的函数上运行doctest.但是doctest似乎并不喜欢nulls …… def do_something_with_hex(c): do_something_with_hex(x00) x00 return repr(c)import doctestdoctest.testmod() 我看到了
|
我正在尝试在一个使用null的函数上运行doctest.但是doctest似乎并不喜欢nulls …… def do_something_with_hex(c):
"""
>>> do_something_with_hex('x00')
'x00'
"""
return repr(c)
import doctest
doctest.testmod()
我看到了这些错误 Failed example:
do_something_with_hex(' ')
Exception raised:
Traceback (most recent call last):
File "C:Python27libdoctest.py",line 1254,in __run
compileflags,1) in test.globs
TypeError: compile() expected string without null bytes
**********************************************************************
在这样的测试用例中,我该怎么做才能允许空值? 解决方法您可以转义所有反斜杠,或者将文档字符串更改为 raw string literal:def do_something_with_hex(c):
r"""
>>> do_something_with_hex('x00')
'x00'
"""
return repr(c)
使用字符串上的r前缀,字符串中包含反斜杠后面的字符不会发生更改,并且所有反斜杠都保留在字符串中. (编辑:吉安站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
推荐文章
站长推荐
- Python – 降低niceness值
- python – 逐行文件处理,for-loop vs with
- python – SqlAlchemy在保存之前将UTC DateTime转
- python – 迭代numpy数组列的所有成对组合
- 在测试python max recursion depth时,为什么我多
- python – 在Matplotlib中绘制两行之间的角度的最
- Python 2与Python 3 – 过滤器行为的差异
- python – 如何在`scipy.integrate.dblquad`中增
- Django Rest Framework上的全文搜索仅支持MYSQL?
- python – FTPES – 需要会话重用
热点阅读
