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
88af7432
Commit
88af7432
authored
Jul 27, 2009
by
Eric Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sync trunk and py3k versions of string formatting. Manual merge of r74219.
parent
34f7e323
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
Objects/stringlib/formatter.h
Objects/stringlib/formatter.h
+16
-9
No files found.
Objects/stringlib/formatter.h
View file @
88af7432
...
...
@@ -920,6 +920,13 @@ format_float_internal(PyObject *value,
format the result. We take care of that later. */
type
=
'g'
;
#if PY_VERSION_HEX < 0x0301000
/* 'F' is the same as 'f', per the PEP */
/* This is no longer the case in 3.x */
if
(
type
==
'F'
)
type
=
'f'
;
#endif
val
=
PyFloat_AsDouble
(
value
);
if
(
val
==
-
1
.
0
&&
PyErr_Occurred
())
goto
done
;
...
...
@@ -935,15 +942,8 @@ format_float_internal(PyObject *value,
#if PY_VERSION_HEX < 0x03010000
/* 3.1 no longer converts large 'f' to 'g'. */
if
(
fabs
(
val
)
>=
1e50
)
switch
(
type
)
{
case
'f'
:
type
=
'g'
;
break
;
case
'F'
:
type
=
'G'
;
break
;
}
if
((
type
==
'f'
||
type
==
'F'
)
&&
fabs
(
val
)
>=
1e50
)
type
=
'g'
;
#endif
/* Cast "type", because if we're in unicode we need to pass a
...
...
@@ -1117,6 +1117,13 @@ format_complex_internal(PyObject *value,
format the result. We take care of that later. */
type
=
'g'
;
#if PY_VERSION_HEX < 0x03010000
/* This is no longer the case in 3.x */
/* 'F' is the same as 'f', per the PEP */
if
(
type
==
'F'
)
type
=
'f'
;
#endif
if
(
precision
<
0
)
precision
=
default_precision
;
...
...
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