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
bae6881b
Commit
bae6881b
authored
Apr 05, 2017
by
Serhiy Storchaka
Committed by
GitHub
Apr 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Argument Clinic generated code for bpo-29878. (#1001)
parent
5affd23e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
Objects/clinic/complexobject.c.h
Objects/clinic/complexobject.c.h
+2
-2
Objects/clinic/floatobject.c.h
Objects/clinic/floatobject.c.h
+2
-2
Objects/complexobject.c
Objects/complexobject.c
+1
-1
Objects/floatobject.c
Objects/floatobject.c
+1
-1
No files found.
Objects/clinic/complexobject.c.h
View file @
bae6881b
...
...
@@ -19,7 +19,7 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
PyObject
*
return_value
=
NULL
;
static
const
char
*
const
_keywords
[]
=
{
"real"
,
"imag"
,
NULL
};
static
_PyArg_Parser
_parser
=
{
"|OO:complex"
,
_keywords
,
0
};
PyObject
*
r
=
Py_False
;
PyObject
*
r
=
_PyLong_Zero
;
PyObject
*
i
=
NULL
;
if
(
!
_PyArg_ParseTupleAndKeywordsFast
(
args
,
kwargs
,
&
_parser
,
...
...
@@ -31,4 +31,4 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
exit:
return
return_value
;
}
/*[clinic end generated code: output=
74035493480ab5e5
input=a9049054013a1b77]*/
/*[clinic end generated code: output=
5017b2458bdc4ecd
input=a9049054013a1b77]*/
Objects/clinic/floatobject.c.h
View file @
bae6881b
...
...
@@ -171,7 +171,7 @@ static PyObject *
float_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kwargs
)
{
PyObject
*
return_value
=
NULL
;
PyObject
*
x
=
Py_False
;
PyObject
*
x
=
_PyLong_Zero
;
if
((
type
==
&
PyFloat_Type
)
&&
!
_PyArg_NoKeywords
(
"float"
,
kwargs
))
{
...
...
@@ -313,4 +313,4 @@ float___format__(PyObject *self, PyObject *arg)
exit:
return
return_value
;
}
/*[clinic end generated code: output=
a3dafb0f6c6f1514
input=a9049054013a1b77]*/
/*[clinic end generated code: output=
dc6b0b67a7e40c93
input=a9049054013a1b77]*/
Objects/complexobject.c
View file @
bae6881b
...
...
@@ -946,7 +946,7 @@ This is equivalent to (real + imag*1j) where imag defaults to 0.
static
PyObject
*
complex_new_impl
(
PyTypeObject
*
type
,
PyObject
*
r
,
PyObject
*
i
)
/*[clinic end generated code: output=b6c7dd577b537dc1 input=
e3d6b77ddcf280da
]*/
/*[clinic end generated code: output=b6c7dd577b537dc1 input=
6f6b0bedba29bcb5
]*/
{
PyObject
*
tmp
;
PyNumberMethods
*
nbr
,
*
nbi
=
NULL
;
...
...
Objects/floatobject.c
View file @
bae6881b
...
...
@@ -1619,7 +1619,7 @@ Convert a string or number to a floating point number, if possible.
static
PyObject
*
float_new_impl
(
PyTypeObject
*
type
,
PyObject
*
x
)
/*[clinic end generated code: output=ccf1e8dc460ba6ba input=
c98d8e811ad203
7a]*/
/*[clinic end generated code: output=ccf1e8dc460ba6ba input=
540ee77c204ff8
7a]*/
{
if
(
type
!=
&
PyFloat_Type
)
return
float_subtype_new
(
type
,
x
);
/* Wimp out */
...
...
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