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 hmathers
Recipients hmathers
Date 2020-01-12.17:42:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1578850928.34.0.888723591235.issue39315@roundup.psfhosted.org>
In-reply-to
Content
class Folder():
    papers = []

shelf = []
shelf.append(Folder)
shelf.append(Folder)

shelf[0].papers.append("one")
shelf[1].papers.append("two")
print(shelf[0].papers) #should just print "one" right?
History
Date User Action Args
2020-01-12 17:42:08hmatherssetrecipients: + hmathers
2020-01-12 17:42:08hmatherssetmessageid: <1578850928.34.0.888723591235.issue39315@roundup.psfhosted.org>
2020-01-12 17:42:08hmatherslinkissue39315 messages
2020-01-12 17:42:08hmatherscreate