Re: changing dicts in a threaded environment ?

2012-11-29 Thread Bart Thate
Terry ! thnx for replying, feedback is the thing i need ;] sorry for the late reply, after your mail i have been coding like hurt (so many hours nonstop hacking hurts in the chair). As i started with all the code in 1 file (what i get when i think something is cool), i splitted the stuff up into

changing dicts in a threaded environment ?

2012-11-27 Thread Bart Thate
Hello All ;] i wondered if somebody could bring me up to date on the following subject: i use python3 now and i need to be able to remove elements from a dict in a thread safe manner. kinda like a Queue.Queue thing but then in a dict, so i can pass arond my dict based objects as parameters

Re: changing dicts in a threaded environment ?

2012-11-27 Thread Terry Reedy
On 11/27/2012 7:53 AM, Bart Thate wrote: [Answers based on reading without thread experience.] i use python3 now and i need to be able to remove elements from a dict in a thread safe manner. Essentially no change from py2. kinda like a Queue.Queue thing but then in a dict, so i can pass