[pypy-issue] [issue1250] "Bus error: 10" with infinite @property rec. inside nose.twistedtools.deferred

Erik Allik tracker at bugs.pypy.org
Sat Sep 1 20:38:35 CEST 2012


New submission from Erik Allik <eallik at gmail.com>:

To reproduce:


    from nose.twistedtools import deferred
     
     
    class Foo(object):  # both with new-style and old-style
        @property  # needed to reproduce the bug
        def prop(self):
            return self.prop
     
     
    @deferred(timeout=None)  # needed to reproduce the bug
    def test():
        Foo().prop

...and run with `nosetests whateverfilename.py`




$ pypy --version
Python 2.7.2 (341e1e3821ff, Jun 07 2012, 15:42:54)
[PyPy 1.9.0 with GCC 4.2.1]

----------
messages: 4695
nosy: eallik, pypy-issue
priority: bug
release: 1.9
status: unread
title: "Bus error: 10" with infinite @property rec. inside nose.twistedtools.deferred

________________________________________
PyPy bug tracker <tracker at bugs.pypy.org>
<https://bugs.pypy.org/issue1250>
________________________________________


More information about the pypy-issue mailing list