iPython bug?

Noah Gift noah.gift at gmail.com
Wed Jul 11 04:12:48 BST 2007


Anyone else get this using iPython?:

92% pwd
/Users/ngift/src/bzrcheckouts/storm/storm
192% cd ..
192% ipython
Python 2.5.1 (r251:54863, Jun  4 2007, 18:21:31)
Type "copyright", "credits" or "license" for more information.

IPython 0.8.1 -- An enhanced Interactive Python.
?       -> Introduction to IPython's features.
%magic  -> Information about IPython's 'magic' % functions.
help    -> Python's own help system.
object? -> Details about 'object'. ?object also works, ?? prints more.

In [1]: from storm.locals import *

In [2]: class Person(object):
   ...:  __storm_table__ = "person"
Python(10525) malloc: *** error for object 0x559df4: Non-aligned
pointer being freed
*** set a breakpoint in malloc_error_break to debug
Python(10525) malloc: *** error for object 0x559dec: Non-aligned
pointer being freed
*** set a breakpoint in malloc_error_break to debug
   ...:

Due to the NDA I agreed to, I cannot say which version of OS X I am
running on...but I don't think that is the issue.

Works just fine in regular python shell:

192% python2.5
Python 2.5.1 (r251:54863, Jun  4 2007, 18:21:31)
[GCC 4.0.1 (Apple Inc. build 5450)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from storm.locals import *
>>> class Person(object):
...     __storm_table_ = "person"
...     id = Int(primary=True)
...     name = Unicode()
...
>>>














-- 
http://www.blog.noahgift.com



More information about the storm mailing list