diff options
Diffstat (limited to 'libs/python/test/long.py')
-rw-r--r-- | libs/python/test/long.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libs/python/test/long.py b/libs/python/test/long.py new file mode 100644 index 000000000..13d8775bb --- /dev/null +++ b/libs/python/test/long.py @@ -0,0 +1,33 @@ +# Copyright David Abrahams 2004. Distributed under the Boost +# Software License, Version 1.0. (See accompanying +# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +''' +>>> from long_ext import * +>>> print new_long() +0 +>>> print longify(42) +42 +>>> print longify_string('300') +300 +>>> is_long(20L) +'yes' +>>> is_long('20') +0 + +>>> x = Y(4294967295L) +''' + +def run(args = None): + import sys + import doctest + + if args is not None: + sys.argv = args + return doctest.testmod(sys.modules.get(__name__)) + +if __name__ == '__main__': + print "running..." + import sys + status = run()[0] + if (status == 0): print "Done." + sys.exit(status) |