and Linux, where it's named icc. (Niall Douglas contributed an
early prototype of parts of this module.)
+ - Fix the private Conftest._Have() function so it doesn't change
+ non-alphanumeric characters to underscores.
+
From Chris Pawling:
- Have the linkloc tool use $MSVS_VERSION to select the Microsoft
elif type(have) == IntType:
line = "#define %s %d\n" % (key_up, have)
else:
- line = "#define %s %s\n" % (key_up,
- re.sub('[^A-Za-z0-9_]', '_', str(have)))
+ line = "#define %s %s\n" % (key_up, str(have))
if context.headerfilename:
f = open(context.headerfilename, "a")