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 cagney
Recipients bquinlan, cagney, gregory.p.smith, hroncok, hugh, josh.r, jwilk, pablogsal, pitrou, vstinner
Date 2019-04-17.23:23:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1555543425.63.0.935466854976.issue35866@roundup.psfhosted.org>
In-reply-to
Content
@gregory.p.smith, I'm puzzled by your references to POSIX and/or os.fork().

The code in question looks like:

import concurrent.futures
import sys

def f():
    import ctypes

while True:
    with concurrent.futures.ProcessPoolExecutor() as executor:
        ftr = executor.submit(f)
        ftr.result()

which, to me, looks like pure Python.

Are you saying that this code can't work on GNU/Linux systems.
History
Date User Action Args
2019-04-17 23:23:45cagneysetrecipients: + cagney, gregory.p.smith, bquinlan, pitrou, vstinner, jwilk, josh.r, hroncok, pablogsal, hugh
2019-04-17 23:23:45cagneysetmessageid: <1555543425.63.0.935466854976.issue35866@roundup.psfhosted.org>
2019-04-17 23:23:45cagneylinkissue35866 messages
2019-04-17 23:23:45cagneycreate