After all it was a misconfiguration of my system and not a problem of
Python or Django.
Somehow the special files /dev/random and /dev/urandom got screwed up.
I suppose it was the outcome of a bad update of the udev package on my
Archlinux system.
When I recreated the node of /dev/urandom manually
The problems with randrange also occur when I run it directly from a
normal python prompt.
>>> random.randrange(0, 2<<63)
instantly returns me the random numbers.
whereas
>>> random.SystemRandom().randrange(0, 2<<63)
Takes forever to run. I cancelled the execution after about 10
minutes.
As an i
Hello
I posted this already in django-user. But because it is rather an
internal django/python problem I will repost it here
I experienced a strange behaviour with my django application when I
wanted to deploy and test on my apache instance on my virtual server.
I could successfully deploy my app