python: remove newline before method call (#44287)

This commit is contained in:
Benjamin Dauvergne 2020-06-20 08:04:55 +02:00
parent 9db28c0c32
commit 05dea2eab5
1 changed files with 2 additions and 2 deletions

View File

@ -1019,11 +1019,11 @@ register_constants(PyObject *d)
if m.return_type:
print_(' return_value =', file=fd)
print_(' return_value = ', file=fd, end='')
if 'new' in m.name:
print_('(%s)' % m.return_type, file=fd)
else:
print_(' ', file=fd)
print_(' ', file=fd, end='')
print_('%s(%s);' % (m.name, ', '.join([ref_name(x) for x in m.args])), file=fd)
if m.return_type: