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 SSchukat
Recipients BTaskaya, SSchukat, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-01-06.08:23:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1578299033.36.0.736558059379.issue18930@roundup.psfhosted.org>
In-reply-to
Content
@Batuhan the error does not appear anymore in at least Python 3.6.1
>>> import os
>>> nPath = os.path.join(os.environ["windir"], "notepad.exe")
>>> os.spawnv(os.P_NOWAIT, nPath, []) # or os.spawnv(os.P_NOWAIT, nPath, [], {})
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: spawnv() arg 2 cannot be empty
History
Date User Action Args
2020-01-06 08:23:53SSchukatsetrecipients: + SSchukat, paul.moore, tim.golden, zach.ware, steve.dower, BTaskaya
2020-01-06 08:23:53SSchukatsetmessageid: <1578299033.36.0.736558059379.issue18930@roundup.psfhosted.org>
2020-01-06 08:23:53SSchukatlinkissue18930 messages
2020-01-06 08:23:52SSchukatcreate