Home | History | Annotate | Download | only in python2.7

Lines Matching full:linkage

1077 def architecture(executable=sys.executable,bits='',linkage=''):
1082 Returns a tuple (bits,linkage) which contains information about
1083 the bit architecture and the linkage format used for the
1124 linkage = l
1125 return bits, linkage
1132 return bits,linkage
1143 # Linkage
1145 linkage = 'ELF'
1149 linkage = 'WindowsPE'
1151 linkage = 'PE'
1153 linkage = 'COFF'
1155 linkage = 'MSDOS'
1160 return bits,linkage
1629 bits,linkage = architecture(sys.executable)
1630 platform = _platform(system,release,machine,processor,bits,linkage)