Jeremy Kloth <jeremy.kloth+python-trac...@gmail.com> added the comment:

This error will occur when there is a 64-bit/32-bit conflict.  Normally, Python 
extension modules are installed in architecture dependent locations, however 
user-installed modules (pip install) can share a path referred to as "user 
site".

A quick check from the command-line can give you its location:

  py -m site

A scan of the paths listed as USER_BASE and USER_SITE might reveal a 
binascii.pyd  which would be shadowing the normally built-in module.

Another source of conflict would be a PYTHONPATH environment variable, if set.

----------
nosy: +jkloth

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue47203>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to