Re: [Python-Dev] [Python-checkins] cpython: Issue #14779: Do not use get_config_var('SIZEOF_VOID_P') on OS X 64-/32-bit

2012-05-13 Thread Martin v. Löwis
-self.sizeof_void_p = get_config_var('SIZEOF_VOID_P') +self.sizeof_void_p = get_config_var('SIZEOF_VOID_P') \ +if sys.platform != 'darwin' else None if not self.sizeof_void_p: -self.sizeof_void_p = 8 if architecture()[0] ==

Re: [Python-Dev] [Python-checkins] cpython: Issue #14779: Do not use get_config_var('SIZEOF_VOID_P') on OS X 64-/32-bit

2012-05-13 Thread Stefan Krah
Martin v. L?wis mar...@v.loewis.de wrote: [http://bugs.python.org/issue14779] -self.sizeof_void_p = get_config_var('SIZEOF_VOID_P') +self.sizeof_void_p = get_config_var('SIZEOF_VOID_P') \ +if sys.platform != 'darwin' else None if not