You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/display-newline/library/noisy.py

14 lines
238 B
Python

from __future__ import annotations
from ansible.module_utils.basic import AnsibleModule
def main() -> None:
m = AnsibleModule({})
m.warn("Hello\r\nNew\rAnsible\nWorld")
m.exit_json()
if __name__ == '__main__':
main()