New submission from zhuojun: >>> def f(*agrs): print(agrs)
>>> f(1,2) (1, 2) >>> f(1) #Is the output wrong? It should be without ','. (1,) ---------- components: None messages: 168929 nosy: zhuojun priority: normal severity: normal status: open title: Tunple Bug? type: behavior versions: Python 3.2 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue15771> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com