Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bb080660
Commit
bb080660
authored
Apr 09, 1998
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The usual
parent
c6a681a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
Lib/dos-8x3/queue.py
Lib/dos-8x3/queue.py
+6
-1
Lib/dos-8x3/socketse.py
Lib/dos-8x3/socketse.py
+2
-0
No files found.
Lib/dos-8x3/queue.py
View file @
bb080660
...
...
@@ -44,7 +44,10 @@ class Queue:
return
n
def
put
(
self
,
item
):
"""Put an item into the queue."""
"""Put an item into the queue.
If the queue is full, block until a free slot is avaiable.
"""
self
.
fsema
.
acquire_lock
()
self
.
mutex
.
acquire_lock
()
was_empty
=
self
.
_empty
()
...
...
@@ -57,6 +60,7 @@ class Queue:
def
get
(
self
):
"""Gets and returns an item from the queue.
This method blocks if necessary until an item is available.
"""
self
.
esema
.
acquire_lock
()
...
...
@@ -74,6 +78,7 @@ class Queue:
# raise Empty if the queue is empty or temporarily unavailable
def
get_nowait
(
self
):
"""Gets and returns an item from the queue.
Only gets an item if one is immediately available, Otherwise
this raises the Empty exception if the queue is empty or
temporarily unavailable.
...
...
Lib/dos-8x3/socketse.py
View file @
bb080660
...
...
@@ -396,6 +396,8 @@ class StreamRequestHandler(BaseRequestHandler):
def
finish
(
self
):
self
.
wfile
.
flush
()
self
.
wfile
.
close
()
self
.
rfile
.
close
()
class
DatagramRequestHandler
(
BaseRequestHandler
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment