[New-bugs-announce] [issue14376] sys.exit documents argument as "integer" but actually requires "subtype of int"

Gareth Rees report at bugs.python.org
Wed Mar 21 01:08:00 CET 2012


New submission from Gareth Rees <gdr at garethrees.org>:

The documentation for sys.exit says, "The optional argument arg can be an integer giving the exit status (defaulting to zero), or another type of object".

However, the arguments that are treated as exit statuses are actually "subtypes of int".

So, a bool argument is fine:

    $ python2.7 -c "import sys; sys.exit(False)"; echo $?
    0

But a long argument is not:

    $ python2.7 -c "import sys; sys.exit(long(0))"; echo $?
    0
    1

The latter behaviour can be surprising since functions like os.spawnv may return the exit status of the executed process as a long on some platforms, so that if you try to pass on the exit code via

    code = os.spawnv(...)
    sys.exit(code)

you may get a mysterious surprise: code is 0 but exit code is 1.

It would be simple to change line 1112 of pythonrun.c from

    if (PyInt_Check(value))

to

    if (PyInt_Check(value) || PyLong_Check(value))

(This issue is not present in Python 3 because there is no longer a distinction between int and long.)

----------
components: Library (Lib)
messages: 156470
nosy: Gareth.Rees
priority: normal
severity: normal
status: open
title: sys.exit documents argument as "integer" but actually requires "subtype of int"
type: behavior
versions: Python 2.6, Python 2.7

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14376>
_______________________________________


More information about the New-bugs-announce mailing list