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
7898316e
Commit
7898316e
authored
Jun 24, 2013
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #9566: Fix a compiler warning on Windows x64
parent
60d376ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
Python/formatter_unicode.c
Python/formatter_unicode.c
+2
-4
No files found.
Python/formatter_unicode.c
View file @
7898316e
...
@@ -982,8 +982,7 @@ format_float_internal(PyObject *value,
...
@@ -982,8 +982,7 @@ format_float_internal(PyObject *value,
Py_ssize_t
n_total
;
Py_ssize_t
n_total
;
int
has_decimal
;
int
has_decimal
;
double
val
;
double
val
;
Py_ssize_t
precision
;
int
precision
,
default_precision
=
6
;
Py_ssize_t
default_precision
=
6
;
Py_UCS4
type
=
format
->
type
;
Py_UCS4
type
=
format
->
type
;
int
add_pct
=
0
;
int
add_pct
=
0
;
Py_ssize_t
index
;
Py_ssize_t
index
;
...
@@ -1138,8 +1137,7 @@ format_complex_internal(PyObject *value,
...
@@ -1138,8 +1137,7 @@ format_complex_internal(PyObject *value,
Py_ssize_t
n_im_total
;
Py_ssize_t
n_im_total
;
int
re_has_decimal
;
int
re_has_decimal
;
int
im_has_decimal
;
int
im_has_decimal
;
int
precision
;
int
precision
,
default_precision
=
6
;
Py_ssize_t
default_precision
=
6
;
Py_UCS4
type
=
format
->
type
;
Py_UCS4
type
=
format
->
type
;
Py_ssize_t
i_re
;
Py_ssize_t
i_re
;
Py_ssize_t
i_im
;
Py_ssize_t
i_im
;
...
...
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