Default arch for minor version

Issue #10 new
Lev Maximov created an issue

Hi,

When I have both 32 and 64 bit python3.6 installed it looks impossible to configure the 32bit python to launch a file with

#!/usr/bin/env python3.6

shebang.

I'd expect that

[default]
python3.6=3.6-32

in py.ini worked, but it doesn't.

Comments (3)

  1. Lev Maximov reporter

    The 64 bit python gets launched.

    The pattern is like that:

    [default]
    python=3.6-32
    
    #!/usr/bin/env python
    

    works

    [default]
    python3=3.6-32
    
    #!/usr/bin/env python3
    

    works

    [default]
    python3.6=3.6-32
    
    #!/usr/bin/env python3.6
    

    doesn't.

  2. Log in to comment