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 Marc.Abramowitz
Recipients Marc.Abramowitz, eric.araujo, tarek
Date 2013-11-11.17:29:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384190997.66.0.0919139722211.issue19555@psf.upfronthosting.co.za>
In-reply-to
Content
I just installed Python 3.0a4 from source on an Ubuntu system and noticed that it doesn't seem to set the distutils.sysconfig config var: "SO":

```
vagrant@ubuntu:~/src/Python-3.4.0a4$ python3.4
Python 3.4.0a4 (default, Nov 11 2013, 17:11:59)
[GCC 4.6.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from distutils import sysconfig
>>> sysconfig.get_config_var("SO")
>>> sysconfig.get_config_var("SO") is None
True
```

This worked fine for me in Python 3.3:

```
vagrant@ubuntu:~/src/Python-3.4.0a4$ python3.3
Python 3.3.2 (default, May 16 2013, 18:32:41)
[GCC 4.6.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from distutils import sysconfig
>>> sysconfig.get_config_var("SO")
'.so'
```
History
Date User Action Args
2013-11-11 17:29:57Marc.Abramowitzsetrecipients: + Marc.Abramowitz, tarek, eric.araujo
2013-11-11 17:29:57Marc.Abramowitzsetmessageid: <1384190997.66.0.0919139722211.issue19555@psf.upfronthosting.co.za>
2013-11-11 17:29:57Marc.Abramowitzlinkissue19555 messages
2013-11-11 17:29:57Marc.Abramowitzcreate