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 vstinner
Recipients josch, vstinner
Date 2015-07-10.13:20:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1436534454.41.0.0329600698083.issue24605@psf.upfronthosting.co.za>
In-reply-to
Content
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@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@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
History
Date User Action Args
2015-07-10 13:20:54vstinnersetrecipients: + vstinner, josch
2015-07-10 13:20:54vstinnersetmessageid: <1436534454.41.0.0329600698083.issue24605@psf.upfronthosting.co.za>
2015-07-10 13:20:54vstinnerlinkissue24605 messages
2015-07-10 13:20:53vstinnercreate