This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pfortin
Recipients
Date 2004-09-18.23:40:54
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Within os and os.path, os.path.join() appears to be the
only function which fails to indicate a TypeError.

This was found inadvertently with:

def foo(*args):
    ...
    return os.path.join(args)   # note the missing "*"

Calling the function with:

foo('a','b')

returns:     ('a','b')

Other os & os.path functions return TypeError in this
situation.
History
Date User Action Args
2008-01-20 09:57:11adminlinkissue1030499 messages
2008-01-20 09:57:11admincreate