Source code for tests.pwb.print_unicode

#!/usr/bin/env python3
"""Script that forms part of pwb_tests."""
#
# (C) Pywikibot team, 2018-2022
#
# Distributed under the terms of the MIT license.
#
from __future__ import annotations

import pywikibot


[docs] def main() -> None: """Print umlauts.""" pywikibot.info('Häuser') print('Häuser')
if __name__ == '__main__': main()