absurdfarce commented on PR #1288:
URL: 
https://github.com/apache/cassandra-python-driver/pull/1288#issuecomment-4427687917

   Also worth mentioning that the error shown above by my FIPS-based test is 
pretty different from what @lratc originally reported.  The only way I've been 
able to get to a ModuleNotFoundError is by trying to import md5 directly:
   
   ```
   $ OPENSSLDIR=~/local/openssl-3.1.2-fips/ssl 
LD_LIBRARY_PATH=/home/me/local/openssl-3.1.2-fips/lib 
~/local/python-3.12.11-fips/bin/python3
   Python 3.12.11 (main, May 11 2026, 22:01:52) [GCC 14.2.0] on linux
   Type "help", "copyright", "credits" or "license" for more information.
   >>> import md5
   Traceback (most recent call last):
     File "<stdin>", line 1, in <module>
   ModuleNotFoundError: No module named 'md5'
   ```
   
   There used to be an old "md5" module in Python 2.x but that was completely 
removed when the transition to 3.x happened.  And unsurprisingly I can't find 
any usage of "import md5" in the current Python driver code base.
   
   @lratc is it possible the error you cited came from some other part of your 
code base?  Can you provide the Python driver version as well as the Python 
interpreter version you used to generate this error?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to