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
c9c02c4c
Commit
c9c02c4c
authored
Jul 02, 2000
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Repair docs for math.frexp (they were wrong).
Reported on c.l.py by Kirill Simonov.
parent
7cafe4d7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Modules/mathmodule.c
Modules/mathmodule.c
+3
-1
No files found.
Modules/mathmodule.c
View file @
c9c02c4c
...
@@ -171,7 +171,9 @@ math_frexp(self, args)
...
@@ -171,7 +171,9 @@ math_frexp(self, args)
static
char
math_frexp_doc
[]
=
static
char
math_frexp_doc
[]
=
"frexp(x)
\n
\
"frexp(x)
\n
\
\n
\
\n
\
Return the matissa and exponent for x. The mantissa is positive."
;
Return the matissa and exponent of x, as pair (m, e).
\n
\
m is a float and e is an int, such that x = m * 2.**e.
\n
\
If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0."
;
static
PyObject
*
static
PyObject
*
...
...
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