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 mak
Recipients mak
Date 2007-11-04.13:09:40
SpamBayes Score 0.18308812
Marked as misclassified No
Message-id <1194181781.67.0.229859307766.issue1772916@psf.upfronthosting.co.za>
In-reply-to
Content
Minimalistic test crash (python 2.5 cvs, sgmlop cvs(pyxml)) - compiled
with msvc 2005, where after 10 loops ms-debugger is invoked:
data='''\
<?xml version="1.0"?>
<methodCall>
  <methodName>mws.ScannerLogout</methodName>
  <params>
    <param>
      <value>
        <i4>7</i4>
      </value>
    </param>
  </params>
</methodCall>
'''

import xmlrpclib

def main():
    i = 1
    while 1:
        print i
        params, method = xmlrpclib.loads(data)
        i+=1
main()
History
Date User Action Args
2007-11-04 13:09:42maksetspambayes_score: 0.183088 -> 0.18308812
recipients: + mak
2007-11-04 13:09:41maksetspambayes_score: 0.183088 -> 0.183088
messageid: <1194181781.67.0.229859307766.issue1772916@psf.upfronthosting.co.za>
2007-11-04 13:09:41maklinkissue1772916 messages
2007-11-04 13:09:40makcreate