{"join",wrapArgs("\xff",newTestList(NewUnicode("foo"),NewUnicode("bar"))),nil,mustCreateException(UnicodeDecodeErrorType,"'utf8' codec can't decode byte 0xff in position 0")},
{"lower",wrapArgs("abc def",123),nil,mustCreateException(TypeErrorType,"'lower' of 'str' requires 1 arguments")},
{"lower",wrapArgs(123),nil,mustCreateException(TypeErrorType,"unbound method lower() must be called with str instance as first argument (got int instance instead)")},
{"title",wrapArgs("abc def",123),nil,mustCreateException(TypeErrorType,"'title' of 'str' requires 1 arguments")},
{"title",wrapArgs(123),nil,mustCreateException(TypeErrorType,"unbound method title() must be called with str instance as first argument (got int instance instead)")},
{"upper",wrapArgs("abc def",123),nil,mustCreateException(TypeErrorType,"'upper' of 'str' requires 1 arguments")},
{"upper",wrapArgs(123),nil,mustCreateException(TypeErrorType,"unbound method upper() must be called with str instance as first argument (got int instance instead)")},