comparison setup.py @ 43675:666441b649e4

setup: combine two contiguous string literals Differential Revision: https://phab.mercurial-scm.org/D7442
author Matt Harbison <matt_harbison@yahoo.com>
date Sat, 16 Nov 2019 11:42:27 -0500
parents 2e017696181f
children 6a5dc4d767a0
comparison
equal deleted inserted replaced
43674:5be909dbe385 43675:666441b649e4
736 'Python DLL does not end with .dll: %s' % dllbasename 736 'Python DLL does not end with .dll: %s' % dllbasename
737 ) 737 )
738 pythonlib = dllbasename[:-4] 738 pythonlib = dllbasename[:-4]
739 else: 739 else:
740 log.warn( 740 log.warn(
741 'could not determine Python DLL filename; ' 'assuming pythonXY' 741 'could not determine Python DLL filename; assuming pythonXY'
742 ) 742 )
743 743
744 hv = sys.hexversion 744 hv = sys.hexversion
745 pythonlib = 'python%d%d' % (hv >> 24, (hv >> 16) & 0xFF) 745 pythonlib = 'python%d%d' % (hv >> 24, (hv >> 16) & 0xFF)
746 746