>>> import ansible_mitogen.target
>>> ansible_mitogen.target.set_file_owner('~/', None, None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/alex/v27/lib/python2.7/site-packages/ansible_mitogen/target.py", line 654, in set_file_owner
os.chown(path, (uid, gid))
TypeError: chown() takes exactly 3 arguments (2 given)
>>> ansible_mitogen.target.set_file_owner('~/', None, None, 123)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/alex/v27/lib/python2.7/site-packages/ansible_mitogen/target.py", line 651, in set_file_owner
os.fchown(fd, (uid, gid))
TypeError: fchown() takes exactly 3 arguments (2 given)