Files
RustPython/extra_tests/snippets/syntax_doc.py
Ashwin Naren a46ce8ec3a Mark version 3.13.0 (#5495)
* 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>
2025-02-13 14:11:01 +09:00

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'