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
1cd26f2f
Commit
1cd26f2f
authored
Apr 02, 1997
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add complex().
Update int(), long(), float() to support string conversions.
parent
740eb826
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
10 deletions
+60
-10
Doc/lib/libfuncs.tex
Doc/lib/libfuncs.tex
+30
-5
Doc/libfuncs.tex
Doc/libfuncs.tex
+30
-5
No files found.
Doc/lib/libfuncs.tex
View file @
1cd26f2f
...
@@ -57,6 +57,14 @@ be added to the end of the the argument list.
...
@@ -57,6 +57,14 @@ be added to the end of the the argument list.
\code
{
None
}
will printed).
\code
{
None
}
will printed).
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
complex
}{
real
\optional
{
, imag
}}
Create a complex number with the value
\var
{
real
}
+
\var
{
imag
}
*j.
Each argument may be any numeric type (including complex).
If
\var
{
imag
}
is omitted, it defaults to zero and the function
serves as a numeric conversion function like
\code
{
int
}
,
\code
{
long
}
and
\code
{
float
}
.
\end{funcdesc}
\begin{funcdesc}
{
delattr
}{
object
\,
name
}
\begin{funcdesc}
{
delattr
}{
object
\,
name
}
This is a relative of
\code
{
setattr
}
. The arguments are an
This is a relative of
\code
{
setattr
}
. The arguments are an
object and a string. The string must be the name
object and a string. The string must be the name
...
@@ -153,8 +161,14 @@ removed.
...
@@ -153,8 +161,14 @@ removed.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
float
}{
x
}
\begin{funcdesc}
{
float
}{
x
}
Convert a number to floating point. The argument may be a plain or
Convert a string or a number to floating point. If the argument is a
long integer or a floating point number.
string, it must contain a possibly singed decimal or floating point
number, possibly embedded in whitespace;
this behaves identical to
\code
{
string.atof(
\var
{
x
}
)
}
.
Otherwise, the argument may be a plain or
long integer or a floating point number, and a floating point number
with the same value (within Python's floating point precision) is
returned.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
getattr
}{
object
\,
name
}
\begin{funcdesc}
{
getattr
}{
object
\,
name
}
...
@@ -226,7 +240,11 @@ module from which it is called).
...
@@ -226,7 +240,11 @@ module from which it is called).
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
int
}{
x
}
\begin{funcdesc}
{
int
}{
x
}
Convert a number to a plain integer. The argument may be a plain or
Convert a string or number to a plain integer. If the argument is a
string, it must contain a possibly singed decimal number
representable as a Python integer, possibly embedded in whitespace;
this behaves identical to
\code
{
string.atoi(
\var
{
x
}
)
}
.
Otherwise, the argument may be a plain or
long integer or a floating point number. Conversion of floating
long integer or a floating point number. Conversion of floating
point numbers to integers is defined by the C semantics; normally
point numbers to integers is defined by the C semantics; normally
the conversion truncates towards zero.
\footnote
{
This is ugly --- the
the conversion truncates towards zero.
\footnote
{
This is ugly --- the
...
@@ -245,8 +263,15 @@ desired effect.
...
@@ -245,8 +263,15 @@ desired effect.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
long
}{
x
}
\begin{funcdesc}
{
long
}{
x
}
Convert a number to a long integer. The argument may be a plain or
Convert a string or number to a long integer. If the argument is a
long integer or a floating point number.
string, it must contain a possibly singed decimal number of
arbitrary size, possibly embedded in whitespace;
this behaves identical to
\code
{
string.atol(
\var
{
x
}
)
}
.
Otherwise, the argument may be a plain or
long integer or a floating point number, and a long interger with
the same value is returned. Conversion of floating
point numbers to integers is defined by the C semantics;
see the description of
\code
{
int()
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
map
}{
function
\,
list
\,
...
}
\begin{funcdesc}
{
map
}{
function
\,
list
\,
...
}
...
...
Doc/libfuncs.tex
View file @
1cd26f2f
...
@@ -57,6 +57,14 @@ be added to the end of the the argument list.
...
@@ -57,6 +57,14 @@ be added to the end of the the argument list.
\code
{
None
}
will printed).
\code
{
None
}
will printed).
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
complex
}{
real
\optional
{
, imag
}}
Create a complex number with the value
\var
{
real
}
+
\var
{
imag
}
*j.
Each argument may be any numeric type (including complex).
If
\var
{
imag
}
is omitted, it defaults to zero and the function
serves as a numeric conversion function like
\code
{
int
}
,
\code
{
long
}
and
\code
{
float
}
.
\end{funcdesc}
\begin{funcdesc}
{
delattr
}{
object
\,
name
}
\begin{funcdesc}
{
delattr
}{
object
\,
name
}
This is a relative of
\code
{
setattr
}
. The arguments are an
This is a relative of
\code
{
setattr
}
. The arguments are an
object and a string. The string must be the name
object and a string. The string must be the name
...
@@ -153,8 +161,14 @@ removed.
...
@@ -153,8 +161,14 @@ removed.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
float
}{
x
}
\begin{funcdesc}
{
float
}{
x
}
Convert a number to floating point. The argument may be a plain or
Convert a string or a number to floating point. If the argument is a
long integer or a floating point number.
string, it must contain a possibly singed decimal or floating point
number, possibly embedded in whitespace;
this behaves identical to
\code
{
string.atof(
\var
{
x
}
)
}
.
Otherwise, the argument may be a plain or
long integer or a floating point number, and a floating point number
with the same value (within Python's floating point precision) is
returned.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
getattr
}{
object
\,
name
}
\begin{funcdesc}
{
getattr
}{
object
\,
name
}
...
@@ -226,7 +240,11 @@ module from which it is called).
...
@@ -226,7 +240,11 @@ module from which it is called).
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
int
}{
x
}
\begin{funcdesc}
{
int
}{
x
}
Convert a number to a plain integer. The argument may be a plain or
Convert a string or number to a plain integer. If the argument is a
string, it must contain a possibly singed decimal number
representable as a Python integer, possibly embedded in whitespace;
this behaves identical to
\code
{
string.atoi(
\var
{
x
}
)
}
.
Otherwise, the argument may be a plain or
long integer or a floating point number. Conversion of floating
long integer or a floating point number. Conversion of floating
point numbers to integers is defined by the C semantics; normally
point numbers to integers is defined by the C semantics; normally
the conversion truncates towards zero.
\footnote
{
This is ugly --- the
the conversion truncates towards zero.
\footnote
{
This is ugly --- the
...
@@ -245,8 +263,15 @@ desired effect.
...
@@ -245,8 +263,15 @@ desired effect.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
long
}{
x
}
\begin{funcdesc}
{
long
}{
x
}
Convert a number to a long integer. The argument may be a plain or
Convert a string or number to a long integer. If the argument is a
long integer or a floating point number.
string, it must contain a possibly singed decimal number of
arbitrary size, possibly embedded in whitespace;
this behaves identical to
\code
{
string.atol(
\var
{
x
}
)
}
.
Otherwise, the argument may be a plain or
long integer or a floating point number, and a long interger with
the same value is returned. Conversion of floating
point numbers to integers is defined by the C semantics;
see the description of
\code
{
int()
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
map
}{
function
\,
list
\,
...
}
\begin{funcdesc}
{
map
}{
function
\,
list
\,
...
}
...
...
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