Florent Xicluna <florent.xicl...@gmail.com> added the comment:

With the #error, I can confirm that computed gotos are enabled on OS X.

About sysconfig, we may change the code to set None if the value is "undef". I 
don't know the impact.


--- a/Lib/sysconfig.py
+++ b/Lib/sysconfig.py
@@ -404,7 +404,7 @@
         else:
             m = undef_rx.match(line)
             if m:
-                vars[m.group(1)] = 0
+                vars[m.group(1)] = None
     return vars

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13240>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to