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 randyw
Recipients
Date 2003-12-04.01:16:44
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=215159

A quick test with Python 2.3 -i shows the following, so I'm 
guessing if at first WinXP claims no memory, try try again.  
Thanks for the quick response Tim. We'll try not to ask WinXP 
for 3 Mil. of memory unless we really need it.

python -i hostMemErr.py
MemoryError, hit return to exit.
Traceback (most recent call last):
  File "hostMemErr.py", line 117, in ?
    main()
  File "hostMemErr.py", line 108, in main
    data = p.dataRecv(sz)
  File "hostMemErr.py", line 63, in dataRecv
    tmp = self.dataSocket.recv (nleft)
MemoryError
>>> s= 'z' * 3000000
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
MemoryError
>>> s= 'z' * 3000000
>>> s= 'z' * 3000000
>>> s= 'z' * 3000000
>>> s= 'z' * 30000000
>>> ^Z
History
Date User Action Args
2007-08-23 14:18:41adminlinkissue853507 messages
2007-08-23 14:18:41admincreate