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 martin.panter
Recipients John Jones, alex, benjamin.peterson, dhduvall, gennad, gregory.p.smith, martin.panter, miss-islington, ned.deily, neologix, pablogsal, serhiy.storchaka, vstinner
Date 2018-05-06.14:02:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1525615343.54.0.682650639539.issue20104@psf.upfronthosting.co.za>
In-reply-to
Content
To wrap “posix_spawnattr_setschedparam” perhaps you could combine it with the scheduler policy:

# Inherit current policy and parameters:
posix_spawn(..., scheduler=None)

# Set new policy with parameters:
posix_spawn(..., scheduler=(policy, param))

# Inherit current policy but set new parameters:
posix_spawn(..., scheduler=(None, param))
History
Date User Action Args
2018-05-06 14:02:23martin.pantersetrecipients: + martin.panter, gregory.p.smith, vstinner, benjamin.peterson, ned.deily, alex, dhduvall, neologix, gennad, serhiy.storchaka, John Jones, pablogsal, miss-islington
2018-05-06 14:02:23martin.pantersetmessageid: <1525615343.54.0.682650639539.issue20104@psf.upfronthosting.co.za>
2018-05-06 14:02:23martin.panterlinkissue20104 messages
2018-05-06 14:02:23martin.pantercreate