[New-bugs-announce] [issue44670] bug on showing tuple on console

Toby Spooner report at bugs.python.org
Sun Jul 18 17:27:05 EDT 2021


New submission from Toby Spooner <kwutge at gmail.com>:

def func(a,b,c , *args , **kwargs):
    print(a)
    print(args)
    print(kwargs)

func(2,3,4,5,Carlson=240,Shehroz="maladiss")

# print(args) showing (5,). NEED TO FIX. python 3.9.6

----------
components: Interpreter Core
files: abc.png
messages: 397759
nosy: kwutge
priority: normal
severity: normal
status: open
title: bug on showing tuple on console
type: behavior
versions: Python 3.9
Added file: https://bugs.python.org/file50158/abc.png

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue44670>
_______________________________________


More information about the New-bugs-announce mailing list