From e88f08c180bc30aa52887bd5cc27fe0fe1a33b2b Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Fri, 20 Dec 2019 13:08:25 +0100 Subject: Add Python to Qt/C++ conversion tool Change-Id: I275e776248bd55c3c38f5fedd83088bf475a1cf9 Reviewed-by: Christian Tismer --- tools/qtpy2cpp_lib/test_baseline/basic_test.py | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 tools/qtpy2cpp_lib/test_baseline/basic_test.py (limited to 'tools/qtpy2cpp_lib/test_baseline/basic_test.py') diff --git a/tools/qtpy2cpp_lib/test_baseline/basic_test.py b/tools/qtpy2cpp_lib/test_baseline/basic_test.py new file mode 100644 index 000000000..e5dc92f9f --- /dev/null +++ b/tools/qtpy2cpp_lib/test_baseline/basic_test.py @@ -0,0 +1,38 @@ +############################################################################# +## +## Copyright (C) 2020 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the test suite of Qt for Python. +## +## $QT_BEGIN_LICENSE:GPL-EXCEPT$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/contact-us. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 3 as published by the Free Software +## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +a = 7 + +if a > 5: + for f in [1, 2]: + print(f) +else: + for i in range(5): + print(i) + for i in range(2, 5): + print(i) -- cgit v1.2.3