[issue1772916] xmlrpclib crash when PyXML installed - sgmlop is available

Grzegorz Makarewicz report at bugs.python.org
Sun Nov 4 14:09:41 CET 2007


Grzegorz Makarewicz added the comment:

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()

----------
components: +Extension Modules -Library (Lib)
nosy: +mak -alanmcintyre, effbot, ldeller, loewis
title: xmlrpclib crash when PyXML installed -> xmlrpclib crash when PyXML installed - sgmlop is available
versions: +3rd party -Python 2.5

_____________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1772916>
_____________________________________


More information about the Python-bugs-list mailing list