f(n=4) works; bug or feature?
Aahz Maruch
aahz at panix.com
Mon Dec 24 00:03:51 EST 2001
More information about the Python-list mailing list
Mon Dec 24 00:03:51 EST 2001
- Previous message (by thread): f(n=4) works; bug or feature?
- Next message (by thread): f(n=4) works; bug or feature?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
In article <3C26B3DA.4000102 at erols.com>, Edward C. Jones <edcjones at erols.com> wrote: >In Python 2.2, the following code prints a "4". > >def fun(n): > print n > >fun(n=4) > >Bug or feature? Feature. You're using the ability of Python to define keyword arguments to functions. -- --- Aahz <*> (Copyright 2001 by aahz at pobox.com) Hugs and backrubs -- I break Rule 6 http://www.rahul.net/aahz/ Androgynous poly kinky vanilla queer het Pythonista Tenth Virtual Anniversary: 8 days and counting
- Previous message (by thread): f(n=4) works; bug or feature?
- Next message (by thread): f(n=4) works; bug or feature?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list