From fc576351c0dcfd419349ac6d6201c3ccd6338247 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 16 Jul 2008 02:39:02 +0000 Subject: [PATCH] sys.maxint -> sys.maxsize --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0519bf77bc0..90fe68f4475 100644 --- a/setup.py +++ b/setup.py @@ -243,7 +243,7 @@ def build_extension(self, ext): return if self.get_platform() == 'darwin' and ( - sys.maxint > 2**32 and '-arch' in ext.extra_link_args): + sys.maxsize > 2**32 and '-arch' in ext.extra_link_args): # Don't bother doing an import check when an extension was # build with an explicit '-arch' flag on OSX. That's currently # only used to build 32-bit only extensions in a 4-way