[New-bugs-announce] [issue19555] "SO" config var not getting set

Marc Abramowitz report at bugs.python.org
Mon Nov 11 18:29:57 CET 2013


New submission from Marc Abramowitz:

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 at 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 at 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'
```

----------
assignee: eric.araujo
components: Distutils
messages: 202634
nosy: Marc.Abramowitz, eric.araujo, tarek
priority: normal
severity: normal
status: open
title: "SO" config var not getting set
type: behavior
versions: Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue19555>
_______________________________________


More information about the New-bugs-announce mailing list