From 922442fe0251df29b3494a2aa93a0d3f18155481 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Mon, 19 Oct 2015 13:03:34 -0700 Subject: Fix use of __doc__ in setup.py for -OO mode --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 8e5c3d04f..106a5fa13 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ basic linear algebra and random number generation. """ from __future__ import division, print_function -DOCLINES = __doc__.split("\n") +DOCLINES = (__doc__ or '').split("\n") import os import sys -- cgit v1.2.1