1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# (C) Copyright 2014 Enthought, Inc., Austin, TX
# All right reserved.
#
# This file is open source software distributed according to the terms in
# LICENSE.txt
#
from __future__ import print_function
import os
 
if 'SHOW_TEST_ENV' in os.environ:
    import sys
    from win32ctypes.core import _backend
    is_64bits = sys.maxsize > 2**32
    print('=' * 30)
    print('Running on python: {} {}'.format(
        sys.version, '64bit' if is_64bits else '32bit'))
    print('The executable is: {}'.format(sys.executable))
    print('Using the {} backend'.format(_backend))
    print('=' * 30)