This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Arfrever, corona10, larry, roger.serwy, serhiy.storchaka, vstinner
Date 2019-09-09.09:01:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1568019707.92.0.999634485689.issue15382@roundup.psfhosted.org>
In-reply-to
Content
By the way, error messages are now also correct:

>>> os.utime("x", ns=None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: utime: 'ns' must be a tuple of two ints

>>> os.utime("x", times=(0, 0), ns=None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: utime: you may specify either 'times' or 'ns' but not both
History
Date User Action Args
2019-09-09 09:01:47vstinnersetrecipients: + vstinner, larry, roger.serwy, Arfrever, serhiy.storchaka, corona10
2019-09-09 09:01:47vstinnersetmessageid: <1568019707.92.0.999634485689.issue15382@roundup.psfhosted.org>
2019-09-09 09:01:47vstinnerlinkissue15382 messages
2019-09-09 09:01:47vstinnercreate