Commit e2f54075 authored by Stefan Behnel's avatar Stefan Behnel

test fix for PyPy

parent 1bf8004e
__doc__ = u""" __doc__ = """
>>> s = Spam() >>> s = Spam()
>>> s.get_tons() >>> s.get_tons()
17 17
>>> s.set_tons(42) >>> s.set_tons(42)
>>> s.get_tons() >>> s.get_tons()
42 42
"""
import platform
if not hasattr(platform, 'python_implementation') or platform.python_implementation() == 'CPython':
__doc__ += """
>>> s = None >>> s = None
42 tons of spam is history. 42 tons of spam is history.
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment