[Sqlalchemy-tickets] [sqlalchemy] #2782: add the setuptools hack for setup.py test
Brought to you by:
zzzeek
|
From: sqlalchemy <mi...@zz...> - 2013-07-15 17:18:55
|
#2782: add the setuptools hack for setup.py test
--------------------+---------------------------------------
Reporter: zzzeek | Owner: zzzeek
Type: defect | Status: new
Priority: medium | Milestone: 0.8.xx
Component: tests | Severity: minor - half an hour
Keywords: | Progress State: in queue
--------------------+---------------------------------------
master, 0.8, 0.7:
{{{
# Hack to prevent "TypeError: 'NoneType' object is not callable" error
# in multiprocessing/util.py _exit_function when running `python
# setup.py test` (see
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
try:
import multiprocessing
except ImportError:
pass
}}}
--
Ticket URL: <http://www.sqlalchemy.org/trac/ticket/2782>
sqlalchemy <http://www.sqlalchemy.org/>
The Database Toolkit for Python
|