Whitespace normalization.

This commit is contained in:
Tim Peters 2004-08-29 18:47:31 +00:00
parent a28b3e6dfb
commit 45e77c55ff
4 changed files with 52 additions and 52 deletions

View file

@ -658,17 +658,17 @@ except NameError: # statvfs_result may not exist
pass
if not _exists("urandom"):
_urandomfd = None
_urandomfd = None
def urandom(n):
"""urandom(n) -> str
Return a string of n random bytes suitable for cryptographic use.
"""
"""
global _urandomfd
if not _urandomfd:
try:
_urandomfd = open("/dev/urandom", O_RDONLY)
_urandomfd = open("/dev/urandom", O_RDONLY)
except:
_urandomfd = NotImplementedError
if _urandomfd is NotImplementedError: