Workaround for nose traceback on Python 2.6; fixes #109

This commit is contained in:
Florent Xicluna 2014-03-30 22:50:01 +02:00
parent 6073c7ad89
commit a6027498a0

View file

@ -1,6 +1,11 @@
# -*- coding: utf-8 -*-
from __future__ import with_statement
from setuptools import setup
try:
# http://bugs.python.org/issue15881#msg170215
import multiprocessing
except ImportError:
pass
def get_version(fname='flake8/__init__.py'):