mirror of
https://github.com/boostorg/python.git
synced 2026-01-22 17:32:55 +00:00
26 lines
456 B
Python
26 lines
456 B
Python
'''
|
|
>>> from bienstman3_ext import *
|
|
|
|
>>> try:
|
|
... V()
|
|
... except RuntimeError, x:
|
|
... print x
|
|
... else:
|
|
... print 'expected an exception'
|
|
...
|
|
This class cannot be instantiated from Python
|
|
|
|
'''
|
|
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
|
|
sys.exit(run()[0])
|