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 amaury.forgeotdarc
Recipients LambertDW, amaury.forgeotdarc, lopgok
Date 2008-12-05.08:13:58
SpamBayes Score 0.0017098377
Marked as misclassified No
Message-id <1228464839.66.0.661842164648.issue4534@psf.upfronthosting.co.za>
In-reply-to
Content
"str" is not your string, it's not a string; "str" is a class name, a
standard type.

"str.join" is a unbound method. You can call it directly if you pass an
actual string object in front of the other arguments.
But the normal way to call methods is to use them on objects:

someString = ""
someList = ['f', 'r', 'e', 'd', ' ', 'i', 's']
someString.join(someList)
History
Date User Action Args
2008-12-05 08:13:59amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, LambertDW, lopgok
2008-12-05 08:13:59amaury.forgeotdarcsetmessageid: <1228464839.66.0.661842164648.issue4534@psf.upfronthosting.co.za>
2008-12-05 08:13:59amaury.forgeotdarclinkissue4534 messages
2008-12-05 08:13:58amaury.forgeotdarccreate