[issue18286] Python 3.3 - Slowing down computer

2013-07-03 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> invalid stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue18286] Python 3.3 - Slowing down computer

2013-07-03 Thread Ramchandra Apte
Ramchandra Apte added the comment: The problem is with OP's code; not Python. Please close this bug as invalid. OP can ask on the Python mailing list to fix his code. -- nosy: +Ramchandra Apte ___ Python tracker _

[issue18286] Python 3.3 - Slowing down computer

2013-07-02 Thread Matthew Barnett
Matthew Barnett added the comment: > with open('url_list.txt') as f: > > content = f.readlines() > content = ''.join(content) > Why are you reading all of the lines and then joining them together like that? Why not just do: content = f.read() > content = list(content) Why are

[issue18286] Python 3.3 - Slowing down computer

2013-06-22 Thread Jon Irenicus
Jon Irenicus added the comment: #David Edelsohn It's not changing anything. with open('url_list.txt') as f: content = f.readlines() content = ''.join(content) content = list(content) if content[0] == 'h' and content[1] == 't' and content[2] =='t': print("Make sure that y

[issue18286] Python 3.3 - Slowing down computer

2013-06-22 Thread David Edelsohn
David Edelsohn added the comment: Is the script changing any configuration settings in your system that reduces available system resources without occupying CPU, RAM or disk? -- nosy: +David.Edelsohn ___ Python tracker

[issue18286] Python 3.3 - Slowing down computer

2013-06-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: We can't make anything useful of such a bug report. At a minimum, please post your entire script and explain how you are running it. Also explain what your system configuration is (operating system, etc.). That said, it's highly unlikely that Python is respons

[issue18286] Python 3.3 - Slowing down computer

2013-06-22 Thread Jon Irenicus
Jon Irenicus added the comment: The problem is when i run my python script, it somehow slows the whole computer down. I checked my cpu usage, ram usage and disk usage, but nothing comes up. The script isn't big, it's only about 10kb big. -- status: pending -> open _

[issue18286] Python 3.3 - Slowing down computer

2013-06-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: You're not giving enough information to help us make sense of your problem. If you don't know how to describe the problem precisely, you should try the mailing-list: http://mail.python.org/mailman/listinfo/python-list -- nosy: +pitrou status: open -> p

[issue18286] Python 3.3 - Slowing down computer

2013-06-22 Thread Jon Irenicus
New submission from Jon Irenicus: Python's really slowing my computer down. After running my script, the computer grinds to a halt and it's performance drops. Even after a reboot, the problem still persists. -- components: Windows messages: 191661 nosy: jon_irenicus priority: normal sev