FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-patterns/pool.py at master · ashchristopher/python-patterns · GitHub
ashchristopher
/
python-patterns
Public
forked from
faif/python-patterns
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-patterns
/
pool.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (38 loc) · 1.32 KB
Breadcrumbs
python-patterns
/
pool.py
Copy path
File metadata and controls
52 lines (38 loc) · 1.32 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
'''http://stackoverflow.com/questions/1514120/python-implementation-of-the-object-pool-design-pattern'''
class
qObj
():
_q
=
None
o
=
None
def
__init__
(
self
,
dQ
,
autoGet
=
False
):
self
.
_q
=
dQ
if
autoGet
==
True
:
self
.
o
=
self
.
_q
.
get
()
def
__enter__
(
self
):
if
self
.
o
==
None
:
self
.
o
=
self
.
_q
.
get
()
return
self
.
o
def
__exit__
(
self
,
type
,
value
,
traceback
):
if
self
.
o
!=
None
:
self
.
_q
.
put
(
self
.
o
)
self
.
o
=
None
def
__del__
(
self
):
if
self
.
o
!=
None
:
self
.
_q
.
put
(
self
.
o
)
self
.
o
=
None
if
__name__
==
"__main__"
:
try
:
import
queue
as
Queue
except
:
# python 2.x compatibility
import
Queue
def
testObj
(
Q
):
someObj
=
qObj
(
Q
,
True
)
print
(
'Inside func: {}'
.
format
(
someObj
.
o
))
aQ
=
Queue
.
Queue
()
aQ
.
put
(
"yam"
)
with
qObj
(
aQ
)
as
obj
:
print
(
"Inside with: {}"
.
format
(
obj
))
print
(
'Outside with: {}'
.
format
(
aQ
.
get
()))
aQ
.
put
(
"sam"
)
testObj
(
aQ
)
print
(
'Outside func: {}'
.
format
(
aQ
.
get
()))
if
not
aQ
.
empty
():
print
(
aQ
.
get
())
Back
|
FazBrowse Home
|
New Git URL