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.

classification
Title: Segmentation fault: 11 with String.split
Type: Stage: resolved
Components: Interpreter Core Versions: Python 2.7
process
Status: closed Resolution: duplicate
Dependencies: Superseder: interactive interpreter crashes and test_readline fails on OS X 10.9 Mavericks due to libedit update
View: 18458
Assigned To: Nosy List: ned.deily, xentnex
Priority: normal Keywords:

Created on 2013-10-24 07:01 by xentnex, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
segfault11.rtf xentnex, 2013-10-24 07:01 Segfault indept description
Messages (2)
msg201094 - (view) Author: Bugra Cakir (xentnex) Date: 2013-10-24 07:01
Can be reproduced on Mac OS X. Stock Python 2.7.5 setup has been installed on a Mac OS X.

Python 2.7.5 (v2.7.5:ab05e7dd2788, May 13 2013, 13:18:45)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> s = "$RMC;12;234;523"
>>> s.split("$")

Segmentation fault: 11
msg201095 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2013-10-24 07:53
Presumably you are running on OS X 10.9 Mavericks.  If so, this is a duplicate of Issue18458.  Please see the available workaround documented there until Python 2.7.6 is released.
History
Date User Action Args
2022-04-11 14:57:52adminsetgithub: 63573
2013-10-24 07:53:56ned.deilysetstatus: open -> closed

superseder: interactive interpreter crashes and test_readline fails on OS X 10.9 Mavericks due to libedit update

nosy: + ned.deily
messages: + msg201095
resolution: duplicate
stage: resolved
2013-10-24 07:01:40xentnexcreate