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 paul.moore
Recipients Chris Caron, paul.moore, r.david.murray, steve.dower, tim.golden, zach.ware
Date 2017-10-12.07:45:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507794358.27.0.213398074469.issue31741@psf.upfronthosting.co.za>
In-reply-to
Content
Also, one of the packages installed creates a file

configparser-3.5.0-py2.7-nspkg.pth

This has some very suspicious looking content:

import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('backports',)); importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.set default('backports', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('backports', [os.path.dirname(p)]))) ;m = m or sys.modules.setdefault('backports', types.ModuleType('backports'));mp = (m or []) and m.__dict__.setdefault('__path__',[ ]);(p not in mp) and mp.append(p)

That's likely your problem. I've no idea what it's doing, but as Zachary says, the backports module is a strange beast...
History
Date User Action Args
2017-10-12 07:45:58paul.mooresetrecipients: + paul.moore, tim.golden, r.david.murray, zach.ware, steve.dower, Chris Caron
2017-10-12 07:45:58paul.mooresetmessageid: <1507794358.27.0.213398074469.issue31741@psf.upfronthosting.co.za>
2017-10-12 07:45:58paul.moorelinkissue31741 messages
2017-10-12 07:45:58paul.moorecreate