Lichen

lib/random.py

118:900d641f42d6
2016-10-20 Paul Boddie Added some more support for generating invocation code, distinguishing between static invocation targets that are identified and whose functions can be obtained directly and other kinds of targets whose functions must be obtained via the special attribute.
     1 #!/usr/bin/env python     2      3 from _random import Random     4      5 def random():     6     pass     7      8 def randrange(start, stop=None, step=1):     9     pass    10     11 # vim: tabstop=4 expandtab shiftwidth=4