Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~229 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for Matt You

Your problem is the use of the pickle module. Your using it to dump out the plain text data to a file and that is not the purpose of pickling.. Read up on what pickling actually is. [url]http://docs.python.org/lib/module-pickle.html[/url] If you replace [CODE]pickle.dump(joinList, file)[/CODE] with... [CODE]file.write(joinList)[/CODE] It will work to an …

Member Avatar for micdareall
0
118
Member Avatar for Elfshadow

I would also suggest Code::blocks as development on DevC seems to have ended, they haven't released an update in about a year. Also Code::blocks seems to have the ability to use DevC's devpacks built in.

Member Avatar for micdareall
0
111

The End.