[issue24605] segmentation fault at asciilib_split_char.lto_priv

STINNER Victor report at bugs.python.org
Fri Jul 10 15:20:54 CEST 2015


STINNER Victor added the comment:

It looks more like a bug in networkx, than a bug in Python itself. networkx has probably issues with reference counter, concurrency (threads), or things like that.

I'm unable to reproduce the crash on Python 3.4 (system binary from Fedora 22) or Python 3.6 (compiled manually).


haypo at smithers$ ./python
Python 3.6.0a0 (default:bb9fc884a838, Jul  6 2015, 15:27:15) 
[GCC 5.1.1 20150618 (Red Hat 5.1.1-4)] on linux
>>> "hscolour:amd64 (= 1.20.3-2)".split()
['hscolour:amd64', '(=', '1.20.3-2)']
>>> "hscolour:amd64 (= 1.20.3-2)".split(",")
['hscolour:amd64 (= 1.20.3-2)']
>>> len("hscolour:amd64 (= 1.20.3-2)")
27


haypo at smithers$ python3
Python 3.4.2 (default, Jan 12 2015, 12:13:20) 
[GCC 4.9.2 20150107 (Red Hat 4.9.2-5)] on linux
>>> "hscolour:amd64 (= 1.20.3-2)".split()
['hscolour:amd64', '(=', '1.20.3-2)']
>>> "hscolour:amd64 (= 1.20.3-2)".split(",")
['hscolour:amd64 (= 1.20.3-2)']
>>> len("hscolour:amd64 (= 1.20.3-2)")
27

----------
nosy: +haypo

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


More information about the Python-bugs-list mailing list