aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qtpy2cpp_lib/test_baseline/basic_test.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2019-12-20 13:08:25 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-03-05 11:20:18 +0100
commite88f08c180bc30aa52887bd5cc27fe0fe1a33b2b (patch)
treef7677ee1ac84afbb7ad8556f2de69522a03a2c16 /tools/qtpy2cpp_lib/test_baseline/basic_test.py
parent4f1739e062623d3ab8aebe9540e945464734a75b (diff)
Add Python to Qt/C++ conversion tool
Change-Id: I275e776248bd55c3c38f5fedd83088bf475a1cf9 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'tools/qtpy2cpp_lib/test_baseline/basic_test.py')
-rw-r--r--tools/qtpy2cpp_lib/test_baseline/basic_test.py38
1 files changed, 38 insertions, 0 deletions
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)