Short, crazy example: list-derived class, with __iadd__

2007-08-29 Thread Moon
class Vec(list): def __init__(self): list.__init__(self, [0.0, 0.0]) def __iadd__(self, other): assert isinstance(other, Vec) self[0] += other[0] self[1] += other[1] print "right now, v is: ", self, " as you'd expect" v = Vec() w = Vec() w[0] = 1.0

Re: Short, crazy example: list-derived class, with __iadd__ <- nevermind, me == idiot

2007-08-29 Thread Moon
__iadd__ is supposed to /return/ something, most likely self. My bad. On Wed, 29 Aug 2007 20:49:59 +, Moon wrote: > class Vec(list): > def __init__(self): > list.__init__(self, [0.0, 0.0]) > > def __iadd__(self, other): > assert isi

Hello

2015-09-19 Thread moon khondkar
Hello I have problem with python installation.I downloaded python 3.5 but I cannot use it on my computer.I can not open the idle. I get something like saying "users\local settings\Application data\programs\python\python35-32\pythonw.exe is not valid win32 application. Thanks that will be help i

python for net manager

2010-01-26 Thread moon sky
hi there, i just want to write a small tool to manage the network, including detect the ip addr,netmask, and send the arp request to find out locale's ip-mac turtple, is there any way to succeed this exlude 'subprocess call'? thanks -- http://mail.python.org/mailman/listinfo/python-list

why does Py_Finalize() always crashes?

2005-12-23 Thread Moon In Pale
I used Python as embeded in C++ program, which is made up of a EXE and a DLL. Py_Initialize() and Py_Finalize() are put in DllMain(). But everytime after the program starts, an "Access Violation" will be thrown. I looked up the Assembly code, the crash appears after Py_Finalize() returns:  }els