文档测试中的字符串引用问题

发布于 2024-07-30 13:16:24 字数 454 浏览 5 评论 0原文

当我在不同的 Python 版本(2.5 与 2.6)和不同的平台(FreeBSD 与 Mac OS)上运行 doctests 时,字符串的引用方式不同:

Failed example:
    decode('{"created_by":"test","guid":123,"num":5.00}')
Expected:
    {'guid': 123, 'num': Decimal("5.00"), 'created_by': 'test'}
Got:
    {'guid': 123, 'num': Decimal('5.00'), 'created_by': 'test'}

因此,在一个盒子上 repr(decimal.Decimal('5.00')) 结果为 'Decimal("5.00" )' 在“Decimal('5.00')”中的另一个。 有没有办法在不创建更复杂的测试逻辑的情况下解决这个问题?

When I run doctests on different Python versions (2.5 vs 2.6) and different plattforms (FreeBSD vs Mac OS) strings get quoted differently:

Failed example:
    decode('{"created_by":"test","guid":123,"num":5.00}')
Expected:
    {'guid': 123, 'num': Decimal("5.00"), 'created_by': 'test'}
Got:
    {'guid': 123, 'num': Decimal('5.00'), 'created_by': 'test'}

So on one box repr(decimal.Decimal('5.00')) results in 'Decimal("5.00")' on the other in "Decimal('5.00')". Is there any way to get arround the issue withyout creating more compliated test logic?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光倒影 2024-08-06 13:16:24

这实际上是因为decimal模块的源代码发生了变化:在python 2.4和python2.5中,decimal.Decimal.__repr__函数包含:

return 'Decimal("%s")' % str(self)

而在python2.6中它包含:

return "Decimal('%s')" % str(self)

因此,在这种情况下,最好的办法就是打印出结果的 str() 并在必要时单独检查类型......

This is actually because the decimal module's source code has changed: In python 2.4 and python2.5 the decimal.Decimal.__repr__ function contains:

return 'Decimal("%s")' % str(self)

whereas in python2.6 it contains:

return "Decimal('%s')" % str(self)

So in this case the best thing to do is just to print out str() of the result and check the type separately if necessary...

家住魔仙堡 2024-08-06 13:16:24

在 David Fraser 的点击之后,我发现了此建议,由 Raymond Hettinger 在 Python 邮件列表上提出。

我现在使用这样的东西:

import sys
if sys.version_info[:2] <= (2, 5):
    # ugly monkeypatch to make doctests work. For the reasons see
    # See http://mail.python.org/pipermail/python-dev/2008-July/081420.html
    # It can go away once all our boxes run python > 2.5
    decimal.Decimal.__repr__ = lambda s: "Decimal('%s')" % str(s)

Following the hits by David Fraser i found this suggestion by Raymond Hettinger on the Python mailinglist.

I now use something like this:

import sys
if sys.version_info[:2] <= (2, 5):
    # ugly monkeypatch to make doctests work. For the reasons see
    # See http://mail.python.org/pipermail/python-dev/2008-July/081420.html
    # It can go away once all our boxes run python > 2.5
    decimal.Decimal.__repr__ = lambda s: "Decimal('%s')" % str(s)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文