Why am I getting duplicate values in my output?

2019-07-25 Thread DT
With the following code: import csv class AccessPoint(object): def __init__(self, name, ipv4, model, location): self.name = name self.ipv4 = ipv4 self.model = model self.location = location print('{0} born'.format(self.name)) def __del__(self):

Re: Why am I getting duplicate values in my output?

2019-07-26 Thread DT
On Thursday, July 25, 2019 at 9:57:38 PM UTC-5, Chris Angelico wrote: > On Fri, Jul 26, 2019 at 12:46 PM DT wrote: > > def main(): > > ap_list = [] > > ap_dict = {} > > > > for row in csv_reader: > > ap_dict['ap_name&

python and outlook

2005-10-21 Thread dt
Hi everyone, Are there any links or sites on how to read outlook mail boxes or address book? -- http://mail.python.org/mailman/listinfo/python-list

ctypes: How to call unexported functions in a dll

2010-01-05 Thread Coert Klaver (DT)
Hi, I am using ctypes in python 3 on a WXP machine Loading a dll and using its exported functions works fine. Now I want to use a function in the dll that is not exported. In C this can be done by just casting the address in the dll of that function to an apropriate function pointer and call it