Skip to content

Commit

Permalink
Merge pull request faif#4 from karlosmid/master
Browse files Browse the repository at this point in the history
update of pool.py
  • Loading branch information
Sakis Kasampalis committed Sep 2, 2012
2 parents b20923e + deb64ef commit 9da776c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ def __del__(self):
self.o = None

if __name__ == "__main__":
import queue
import Queue

def testObj(Q):
someObj = qObj(Q, True)
print('Inside func: {}'.format(someObj.o))

aQ = queue.Queue()
aQ = Queue.Queue()
aQ.put("yam")

with qObj(aQ) as obj:
Expand Down

0 comments on commit 9da776c

Please sign in to comment.