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
__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 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
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
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