sjcurt02 wrote: >>>> import distutils >>>> distutils.sysconfig.get_config_vars()['CONFIG_ARGS'] > Traceback (most recent call last): > File "<stdin>", line 1, in ? > AttributeError: 'module' object has no attribute 'sysconfig' > <snip>
I finally understand what was meant. This worked for me: >>> from distutils import sysconfig >>> sysconfig.get_config_vars()['CONFIG_ARGS'] but it produced no output because I configured python without specifying any arguments using default values instead. I grepped through the Makefile and config.log and didn't see anything about specifying a value for the stack size. What configure options affect the python stack size? -- View this message in context: http://www.nabble.com/Zope-error-getting-Plone-running-on-HP-UX-tp19464280p19564772.html Sent from the Zope - General mailing list archive at Nabble.com. _______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )