[issue27201] expose the ABI name as a config variable

2018-07-28 Thread Matthias Klose


Matthias Klose  added the comment:

ok, not working on that currently

--
resolution:  -> rejected
stage:  -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27201] expose the ABI name as a config variable

2018-07-28 Thread Petr Viktorin


Petr Viktorin  added the comment:

If Debian's talloc is fine without this, maybe we can close the issue?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27201] expose the ABI name as a config variable

2016-06-21 Thread Petr Viktorin

Changes by Petr Viktorin :


--
nosy: +encukou

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27201] expose the ABI name as a config variable

2016-06-04 Thread Matthias Klose

Matthias Klose added the comment:

maybe we don't need that. you already can do:

import sys
'%s-%d%d%s' % (sys.implementation.name, sys.version_info[0], 
sys.version_info[1], sys.abiflags)
'cpython-35m'

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27201] expose the ABI name as a config variable

2016-06-03 Thread Matthias Klose

New submission from Matthias Klose:

Some python extensions provide/rely on support libraries which are shipped in 
addition to the extension module, and which depend on the Python ABI (version 
and ABI flags). talloc is such an example, and it currently uses the SOABI as 
the symbol version for symbols exported in such a support library. In 3.5 and 
3.6, the SOABI includes the architecture definition as well, so you end up with 
different symbol versions and library names across  architectures, which is not 
wanted. Therefore expose just the ABI in a new macro. Now choosen ABINAME, but 
that could be something different as well.

--
components: Build
files: abiname.diff
keywords: patch
messages: 267181
nosy: doko, ncoghlan
priority: normal
severity: normal
status: open
title: expose the ABI name as a config variable
versions: Python 3.6
Added file: http://bugs.python.org/file43167/abiname.diff

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com