forked from Rust-related/RustPython
* bump to 3.13.1 * fix some tests * strip left whitespace from doc * remove specific difflib test that was causing issues * fix test_enum Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
16 lines
155 B
Python
16 lines
155 B
Python
|
|
def f1():
|
|
"""
|
|
x
|
|
\ty
|
|
"""
|
|
assert f1.__doc__ == '\nx\ny\n'
|
|
|
|
def f2():
|
|
"""
|
|
\t x
|
|
\t\ty
|
|
"""
|
|
|
|
assert f2.__doc__ == '\nx\n y\n'
|