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
66b371e0
Commit
66b371e0
authored
Jun 20, 2011
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Plain Diff
merge heads
parents
f63d615f
2fae27b7
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
10 deletions
+27
-10
Doc/library/asyncore.rst
Doc/library/asyncore.rst
+2
-2
Doc/library/http.client.rst
Doc/library/http.client.rst
+12
-1
Doc/tutorial/modules.rst
Doc/tutorial/modules.rst
+8
-7
Lib/multiprocessing/pool.py
Lib/multiprocessing/pool.py
+2
-0
Lib/test/test_multiprocessing.py
Lib/test/test_multiprocessing.py
+3
-0
No files found.
Doc/library/asyncore.rst
View file @
66b371e0
...
...
@@ -157,8 +157,8 @@ any that have been added to the map during asynchronous service) is closed.
Called on listening channels (passive openers) when a connection has been
established with a new remote endpoint that has issued a :meth:`connect`
call for the local endpoint. *
conn
* is a *new* socket object usable to
send and receive data on the connection, and *addr
ess
* is the address
call for the local endpoint. *
sock
* is a *new* socket object usable to
send and receive data on the connection, and *addr* is the address
bound to the socket on the other end of the connection.
.. versionadded:: 3.2
...
...
Doc/library/http.client.rst
View file @
66b371e0
...
...
@@ -543,6 +543,9 @@ statement.
A debugging hook. If :attr:`debuglevel` is greater than zero, messages
will be printed to stdout as the response is read and parsed.
.. attribute:: HTTPResponse.closed
Is True if the stream is closed.
Examples
--------
...
...
@@ -555,7 +558,15 @@ Here is an example session that uses the ``GET`` method::
>>> r1 = conn.getresponse()
>>> print(r1.status, r1.reason)
200 OK
>>> data1 = r1.read()
>>> data1 = r1.read() # This will return entire content.
>>> # The following example demonstrates reading data in chunks.
>>> conn.request("GET", "/index.html")
>>> r1 = conn.getresponse()
>>> while not r1.closed:
... print(r1.read(200)) # 200 bytes
b'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
...
>>> # Example of an invalid request
>>> conn.request("GET", "/parrot.spam")
>>> r2 = conn.getresponse()
>>> print(r2.status, r2.reason)
...
...
Doc/tutorial/modules.rst
View file @
66b371e0
...
...
@@ -159,13 +159,14 @@ The Module Search Path
.. index:: triple: module; search; path
When a module named :mod:`spam` is imported, the interpreter searches for a file
named :file:`spam.py` in the current directory, and then in the list of
directories specified by the environment variable :envvar:`PYTHONPATH`. This
has the same syntax as the shell variable :envvar:`PATH`, that is, a list of
directory names. When :envvar:`PYTHONPATH` is not set, or when the file is not
found there, the search continues in an installation-dependent default path; on
Unix, this is usually :file:`.:/usr/local/lib/python`.
When a module named :mod:`spam` is imported, the interpreter searches for a
file named :file:`spam.py` in the directory containing the input script and
then in the list of directories specified by the environment variable
:envvar:`PYTHONPATH`. This has the same syntax as the shell variable
:envvar:`PATH`, that is, a list of directory names. When :envvar:`PYTHONPATH`
is not set, or when the file is not found there, the search continues in an
installation-dependent default path; on Unix, this is usually
:file:`.:/usr/local/lib/python`.
Actually, modules are searched in the list of directories given by the variable
``sys.path`` which is initialized from the directory containing the input script
...
...
Lib/multiprocessing/pool.py
View file @
66b371e0
...
...
@@ -148,6 +148,8 @@ class Pool(object):
processes
=
cpu_count
()
except
NotImplementedError
:
processes
=
1
if
processes
<
1
:
raise
ValueError
(
"Number of processes must be at least 1"
)
if
initializer
is
not
None
and
not
hasattr
(
initializer
,
'__call__'
):
raise
TypeError
(
'initializer must be a callable'
)
...
...
Lib/test/test_multiprocessing.py
View file @
66b371e0
...
...
@@ -1089,6 +1089,9 @@ class _TestPool(BaseTestCase):
self
.
assertEqual
(
sorted
(
it
),
list
(
map
(
sqr
,
list
(
range
(
1000
)))))
def
test_make_pool
(
self
):
self
.
assertRaises
(
ValueError
,
multiprocessing
.
Pool
,
-
1
)
self
.
assertRaises
(
ValueError
,
multiprocessing
.
Pool
,
0
)
p
=
multiprocessing
.
Pool
(
3
)
self
.
assertEqual
(
3
,
len
(
p
.
_pool
))
p
.
close
()
...
...
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