File indexing completed on 2024-04-14 03:59:08

0001 #!/usr/bin/env python3
0002 
0003 """
0004 Copyright (c) 2010,2016 Wolfgang Rohdewald <wolfgang@rohdewald.de>
0005 Redistribution and use is allowed according to the terms of the BSD license.
0006 For details see the accompanying COPYING-CMAKE-SCRIPTS file.
0007 """
0008 
0009 import sys
0010 
0011 try:
0012     from twisted.spread import pb
0013     _ = pb
0014 except BaseException:
0015     print('twisted_version:{}'.format('0.0.0'))
0016     sys.exit(0)
0017 from twisted import __version__
0018 print('twisted_version:{}'.format(__version__))