New submission from Jona Sassenhagen:

Simple OOP segfault CtD using OSX 10.9.2

User@here:~/$ python3
Python 3.3.2 (v3.3.2:d047928ae3f6, May 13 2013, 13:52:24) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 
>>> class Word(object):
...     def __init__(self, name, phon, semantics=None, askglobal=None, 
ask=None, giveglobal=None, give=None):
                self.name = name
                self.phon = phon
                self.semantics = semantics
                self.askglobal = askglobal
                self.ask = ask
                self.giveglobal = giveglobal
                self.give = give


class V(Word):
        def __init__(self)
                super().__init__(self,name,phon,semantics=None, askglobal=None, 
ask=None, giveglobal=None, give=None):
                self.askglobal = [nom,acc]

Segmentation fault: 11

----------
assignee: ronaldoussoren
components: Macintosh
messages: 214835
nosy: Jona.Sassenhagen, ronaldoussoren
priority: normal
severity: normal
status: open
title: Simple segfault
type: crash
versions: Python 3.3

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue21064>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to