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
452f5df6
Commit
452f5df6
authored
Apr 26, 2007
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix some markup errors
parent
cf795b49
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
Doc/lib/libbase64.tex
Doc/lib/libbase64.tex
+1
-1
Doc/lib/liblogging.tex
Doc/lib/liblogging.tex
+1
-1
Doc/lib/libstdtypes.tex
Doc/lib/libstdtypes.tex
+2
-2
Doc/lib/libxmlrpclib.tex
Doc/lib/libxmlrpclib.tex
+1
-1
No files found.
Doc/lib/libbase64.tex
View file @
452f5df6
...
@@ -85,7 +85,7 @@ security purposes, the default is \code{False}.
...
@@ -85,7 +85,7 @@ security purposes, the default is \code{False}.
letter O (oh), and for optional mapping of the digit 1 (one) to either
letter O (oh), and for optional mapping of the digit 1 (one) to either
the letter I (eye) or letter L (el). The optional argument
the letter I (eye) or letter L (el). The optional argument
\var
{
map01
}
when not
\code
{
None
}
, specifies which letter the digit 1 should
\var
{
map01
}
when not
\code
{
None
}
, specifies which letter the digit 1 should
be mapped to (when
map01 is not
\var
{
None
}
, the digit 0 is always
be mapped to (when
\var
{
map01
}
is not
\code
{
None
}
, the digit 0 is always
mapped to the letter O). For security purposes the default is
mapped to the letter O). For security purposes the default is
\code
{
None
}
, so that 0 and 1 are not allowed in the input.
\code
{
None
}
, so that 0 and 1 are not allowed in the input.
...
...
Doc/lib/liblogging.tex
View file @
452f5df6
...
@@ -1528,7 +1528,7 @@ which, together with \var{msg}, makes up the user message; and
...
@@ -1528,7 +1528,7 @@ which, together with \var{msg}, makes up the user message; and
\var
{
exc
_
info
}
is the exception tuple obtained by calling
\var
{
exc
_
info
}
is the exception tuple obtained by calling
\function
{
sys.exc
_
info()
}
(or
\constant
{
None
}
, if no exception information
\function
{
sys.exc
_
info()
}
(or
\constant
{
None
}
, if no exception information
is available). The
\var
{
func
}
is the name of the function from which the
is available). The
\var
{
func
}
is the name of the function from which the
logging call was made. If not specified, it defaults to
\
var
{
None
}
.
logging call was made. If not specified, it defaults to
\
code
{
None
}
.
\versionchanged
[\var{func} was added]
{
2.5
}
\versionchanged
[\var{func} was added]
{
2.5
}
\end{classdesc}
\end{classdesc}
...
...
Doc/lib/libstdtypes.tex
View file @
452f5df6
...
@@ -1496,7 +1496,7 @@ provided and \var{k} is not in the map, \code{None} is returned.
...
@@ -1496,7 +1496,7 @@ provided and \var{k} is not in the map, \code{None} is returned.
\item
[(5)]
\function
{
setdefault()
}
is like
\function
{
get()
}
, except
\item
[(5)]
\function
{
setdefault()
}
is like
\function
{
get()
}
, except
that if
\var
{
k
}
is missing,
\var
{
x
}
is both returned and inserted into
that if
\var
{
k
}
is missing,
\var
{
x
}
is both returned and inserted into
the dictionary as the value of
\var
{
k
}
.
\var
{
x
}
defaults to
\
var
{
None
}
.
the dictionary as the value of
\var
{
k
}
.
\var
{
x
}
defaults to
\
code
{
None
}
.
\item
[(6)]
\function
{
popitem()
}
is useful to destructively iterate
\item
[(6)]
\function
{
popitem()
}
is useful to destructively iterate
over a dictionary, as often used in set algorithms. If the dictionary
over a dictionary, as often used in set algorithms. If the dictionary
...
@@ -1855,7 +1855,7 @@ define a runtime context:
...
@@ -1855,7 +1855,7 @@ define a runtime context:
expection that occurred should be suppressed. If an exception
expection that occurred should be suppressed. If an exception
occurred while executing the body of the
\keyword
{
with
}
statement, the
occurred while executing the body of the
\keyword
{
with
}
statement, the
arguments contain the exception type, value and traceback information.
arguments contain the exception type, value and traceback information.
Otherwise, all three arguments are
\
var
{
None
}
.
Otherwise, all three arguments are
\
code
{
None
}
.
Returning a true value from this method will cause the
\keyword
{
with
}
Returning a true value from this method will cause the
\keyword
{
with
}
statement to suppress the exception and continue execution with the
statement to suppress the exception and continue execution with the
...
...
Doc/lib/libxmlrpclib.tex
View file @
452f5df6
...
@@ -287,7 +287,7 @@ single request.
...
@@ -287,7 +287,7 @@ single request.
Create an object used to boxcar method calls.
\var
{
server
}
is the
Create an object used to boxcar method calls.
\var
{
server
}
is the
eventual target of the call. Calls can be made to the result object,
eventual target of the call. Calls can be made to the result object,
but they will immediately return
\
var
{
None
}
, and only store the
but they will immediately return
\
code
{
None
}
, and only store the
call name and parameters in the
\class
{
MultiCall
}
object. Calling
call name and parameters in the
\class
{
MultiCall
}
object. Calling
the object itself causes all stored calls to be transmitted as
the object itself causes all stored calls to be transmitted as
a single
\code
{
system.multicall
}
request. The result of this call
a single
\code
{
system.multicall
}
request. The result of this call
...
...
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