Message1499

Author rluse
Recipients
Date 2007-12-24.21:18:17
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I just ran the following script and it was still going strong at over 75000 character string length :


seed = 'a'
testString = 'a'
while True:
    testString = testString + seed
    if len(testString) % 1000 == 0:
        print len(testString)

So, I think you can close this one also.
    
History
Date User Action Args
2008-02-20 17:17:45adminlinkissue1663711 messages
2008-02-20 17:17:45admincreate