tomer filiba wrote: > i'd vote for placing it at the end of the last > argument's name, for example: > > def f(a, b*, c, d)
Another idea: def f(a, b; c, d): It fails the "syntax variants shouldn't look like grime on your monitor" test though. Hmm, the next best thing I can come up with is: def f(a, b, =, c, d): The "=" vaguely references the "=" in keyword arguments. -- Benji York _______________________________________________ Python-3000 mailing list Python-3000@python.org http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com