Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b399ab2 commit 9bd9d74Copy full SHA for 9bd9d74
1 file changed
Modules/posixmodule.c
@@ -3702,7 +3702,7 @@ utime_read_time_arguments(utime_arguments *ua)
3702
if (!PyTuple_CheckExact(times) || (PyTuple_Size(times) != 2)) {
3703
PyErr_Format(PyExc_TypeError,
3704
"%s: 'time' must be either"
3705
- " a valid tuple of two ints or None",
+ " a tuple of two ints or None",
3706
ua->function_name);
3707
goto fail;
3708
}
@@ -3718,7 +3718,7 @@ utime_read_time_arguments(utime_arguments *ua)
3718
if (ns) {
3719
if (!PyTuple_CheckExact(ns) || (PyTuple_Size(ns) != 2)) {
3720
3721
- "%s: 'ns' must be a valid tuple of two ints",
+ "%s: 'ns' must be a tuple of two ints",
3722
3723
3724
0 commit comments