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 fgyuri
Recipients fgyuri, paul.moore, steve.dower, tim.golden, zach.ware
Date 2018-07-27.16:17:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532708274.27.0.56676864532.issue34250@psf.upfronthosting.co.za>
In-reply-to
Content
Big magic in python 2.7.15 win version:

Create file: "xml.py" containing 2 code lines:

import xmlrpclib

proxy = xmlrpclib.ServerProxy("http://localhost:8000/")

run it, and it gives u a nice error:
C:\work\mitre>\Python27\python.exe xml.py
Traceback (most recent call last):
  File "xml.py", line 1, in <module>
    import xmlrpclib
  File "C:\Python27\lib\xmlrpclib.py", line 538, in <module>
    from xml.parsers import expat
  File "C:\work\mitre\xml.py", line 3, in <module>
    proxy = xmlrpclib.ServerProxy("http://localhost:8000/")
AttributeError: 'module' object has no attribute 'ServerProxy'


U also get this error, when this file present in the directory where u want to import xmlrpclib in another py. ANd if only the compiled xml.pyc exist, the bug comes.  But if you rename it to xm.py, it works!

Maybe a bad import from wrong directory in xmlrpclib. Not tested on another version or platform.
History
Date User Action Args
2018-07-27 16:17:54fgyurisetrecipients: + fgyuri, paul.moore, tim.golden, zach.ware, steve.dower
2018-07-27 16:17:54fgyurisetmessageid: <1532708274.27.0.56676864532.issue34250@psf.upfronthosting.co.za>
2018-07-27 16:17:54fgyurilinkissue34250 messages
2018-07-27 16:17:54fgyuricreate