diff -Naur a/Python-2.7.8/setup.py b/Python-2.7.8/setup.py --- a/Python-2.7.8/setup.py 2014-06-30 07:35:48.000000000 +0530 +++ b/Python-2.7.8/setup.py 2014-11-26 11:17:59.694819446 +0530 @@ -693,12 +693,8 @@ # 64-bit platforms. exts.append( Extension('audioop', ['audioop.c']) ) - # Disabled on 64-bit platforms - if sys.maxint != 9223372036854775807L: - # Operations on images - exts.append( Extension('imageop', ['imageop.c']) ) - else: - missing.extend(['imageop']) + # Operations on images + exts.append( Extension('imageop', ['imageop.c']) ) # readline do_readline = self.compiler.find_library_file(lib_dirs, 'readline')