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 nadeem.vawda
Recipients cantor, jnoller, nadeem.vawda, pitrou, sbt, tim.peters
Date 2013-10-26.18:11:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382811101.7.0.637835743845.issue19395@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like there's also a separate problem in the multiprocessing
module. The following code hangs after hitting a TypeError trying to
pickle one of the TextIOWrapper objects:

    import multiprocessing

    def read(f): return f.read()

    files = [open(path) for path in 3 * ['/dev/null']]
    pool = multiprocessing.Pool()
    results = pool.map(read, files)
    print(results)
History
Date User Action Args
2013-10-26 18:11:41nadeem.vawdasetrecipients: + nadeem.vawda, tim.peters, pitrou, jnoller, sbt, cantor
2013-10-26 18:11:41nadeem.vawdasetmessageid: <1382811101.7.0.637835743845.issue19395@psf.upfronthosting.co.za>
2013-10-26 18:11:41nadeem.vawdalinkissue19395 messages
2013-10-26 18:11:41nadeem.vawdacreate