empty object from C

Eric Frederich eric.frederich at gmail.com
Fri Dec 7 10:42:28 EST 2012


Hello,

>From C, I'd like to call a Python function that takes an object and sets
some attributes on it.
Lets say this is the function...

def foo(msg):
    msg.bar = 123
    msg.spam = 'eggs'

How do I create an empty object in C?
In Python I would do something like this...

class Msg(object):
    pass

... and then instantiate an instance, and call the function.

msg = Msg()
foo(msg)



I know how to create an empty dictionary and I get get by with that, but
I'd like to create an object.

Thanks,
~Eric
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20121207/bed35420/attachment.html>


More information about the Python-list mailing list