[Python-Dev] [Python-checkins] cpython: what is a invalid tuple? (original) (raw)
Stefan Krah stefan at bytereef.org
Fri May 4 11:45:35 CEST 2012
- Previous message: [Python-Dev] [Python-checkins] cpython: avoid unitialized memory
- Next message: [Python-Dev] cpython: Issue #14127: Fix two bugs with the Windows implementation.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
benjamin.peterson <python-checkins at python.org> wrote:
files: Modules/posixmodule.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3702,7 +3702,7 @@ if (!PyTupleCheckExact(times) || (PyTupleSize(times) != 2)) { PyErrFormat(PyExcTypeError, "%s: 'time' must be either" - " a valid tuple of two ints or None", + " a tuple of two ints or None",
Unrelated to this commit, but 'time' should be 'times'.
Stefan Krah
- Previous message: [Python-Dev] [Python-checkins] cpython: avoid unitialized memory
- Next message: [Python-Dev] cpython: Issue #14127: Fix two bugs with the Windows implementation.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]