import_test.py 488 B

1234567891011121314151617181920
  1. """
  2. Copyright (c) Contributors to the Open 3D Engine Project.
  3. For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. SPDX-License-Identifier: Apache-2.0 OR MIT
  5. """
  6. #
  7. # testing Python import package
  8. #
  9. import sys
  10. def test_call():
  11. print ('test_call_hit')
  12. class TestType:
  13. def __init__(self, *args, **kwargs):
  14. return super().__init__(*args, **kwargs)
  15. def do_call(self, value):
  16. print ('TestType.do_call.{}'.format(value))