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