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.22:58:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557183536.49.0.25450486577.issue36814@roundup.psfhosted.org>
In-reply-to
Content
Verified on master
Python 3.8.0a3+ (heads/bpo-28367:373c7aa098, May  6 2019, 17:34:39) 
[Clang 10.0.1 (clang-1001.0.46.4)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> os.posix_spawnp('whoami', ['whoami'], os.environ, file_actions=None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'os' is not defined
>>> import os
>>> os.posix_spawnp('whoami', ['whoami'], os.environ, file_actions=None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: file_actions must be a sequence or None
History
Date User Action Args
2019-05-06 22:58:56anthonypjshawsetrecipients: + anthonypjshaw, Matthew Tanous
2019-05-06 22:58:56anthonypjshawsetmessageid: <1557183536.49.0.25450486577.issue36814@roundup.psfhosted.org>
2019-05-06 22:58:56anthonypjshawlinkissue36814 messages
2019-05-06 22:58:56anthonypjshawcreate