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 anthonypjshaw
Recipients Matthew Tanous, anthonypjshaw
Date 2019-05-06.23:07:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557184026.75.0.87588268792.issue36814@roundup.psfhosted.org>
In-reply-to
Content
Issue is in parse_file_actions

parse_file_actions(PyObject *file_actions,
                   posix_spawn_file_actions_t *file_actionsp,
                   PyObject *temp_buffer)
{
    PyObject *seq;
    PyObject *file_action = NULL;
    PyObject *tag_obj;

    seq = v(file_actions,
                          "file_actions must be a sequence or None");
    if (seq == NULL) {
        return -1;
    }

PySequence_Fast will raise a TypeError if PyObject_GetIter fails.
History
Date User Action Args
2019-05-06 23:07:06anthonypjshawsetrecipients: + anthonypjshaw, Matthew Tanous
2019-05-06 23:07:06anthonypjshawsetmessageid: <1557184026.75.0.87588268792.issue36814@roundup.psfhosted.org>
2019-05-06 23:07:06anthonypjshawlinkissue36814 messages
2019-05-06 23:07:06anthonypjshawcreate