This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author srid
Recipients srid, tarek, trentm
Date 2009-04-22.01:00:38
SpamBayes Score 5.023187e-07
Marked as misclassified No
Message-id <1240362042.52.0.447474592558.issue5810@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry, but the commit r69598 (due to Issue4524) has a problem. On
Windows and Linux (although not on MacOSX), test_distutils fails:

test_distutils
test test_distutils failed -- Traceback (most recent call last):
  File "C:\Python26\lib\distutils\tests\test_build_scripts.py", line 93,
in test_version_int
    old = sysconfig._config_vars.get('VERSION')
AttributeError: 'NoneType' object has no attribute 'get'


Using the documented API (`sysconfig.get_config_vars()`) instead of an
uninitialized private variable (`sysconfig._config_vars.get('VERSION')`)
may fix it.


The following session is from my a Windows machine:

>>> from distutils import sysconfig
>>> print sysconfig._config_vars
None
>>> s = sysconfig.get_config_vars()
>>> s
{'EXE': '.exe', ...}
>>> sysconfig._config_vars
{'EXE': '.exe', ...}
>>>

We face this failure while testing the ActivePython builds based on
Python 2.6.2.
History
Date User Action Args
2009-04-22 01:00:42sridsetrecipients: + srid, tarek, trentm
2009-04-22 01:00:42sridsetmessageid: <1240362042.52.0.447474592558.issue5810@psf.upfronthosting.co.za>
2009-04-22 01:00:40sridlinkissue5810 messages
2009-04-22 01:00:39sridcreate