659
659
except (NotImplementedError, AttributeError):
660
660
# If python doesn't have os.urandom, or it doesn't work,
661
661
# then try to first pull random data from /dev/urandom
663
663
rand_bytes = file('/dev/urandom', 'rb').read
664
664
# Otherwise, use this hack as a last resort
666
666
# not well seeded, but better than nothing