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 ned.deily
Recipients ned.deily, tokeefe
Date 2013-08-19.20:24:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376943872.0.0.277430300537.issue18782@psf.upfronthosting.co.za>
In-reply-to
Content
What platform are you running on? Please run the following script in the same environment as you get the segfault and report the results.

#!/usr/bin/env python

import multiprocessing
import platform
import sqlite3
import sys

print(sys.version)
print(sqlite3.version)
print(sqlite3.sqlite_version)
print(multiprocessing.__version__)
print(multiprocessing.cpu_count())
print(platform.platform())

For what it's worth, I was not able to reproduce this behavior using several different environments.  Also, what happens if you add

    pool.close()
    pool.join()

following the pool.map call?
History
Date User Action Args
2013-08-19 20:24:32ned.deilysetrecipients: + ned.deily, tokeefe
2013-08-19 20:24:31ned.deilysetmessageid: <1376943872.0.0.277430300537.issue18782@psf.upfronthosting.co.za>
2013-08-19 20:24:31ned.deilylinkissue18782 messages
2013-08-19 20:24:31ned.deilycreate