Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add compliant and noncompliant examples of python/[email protected] #80

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

# {fact [email protected] defects=1}
# —— Code Cell 1 —— #
import math
# —— Code Cell 2 —— #
x = int(input('x:'))
y = int(input('y:'))
# —— Code Cell 3 —— #
z = '5'
# —— Code Cell 4 —— #
z = math.sqrt(x**2 + y**2)
# —— Code Cell 5 —— #
# Noncompliant: variable `z` is assigned to different types of values in above
# cells 3 and 4. Then in cell 5, the value of `z` is used in a `print()` call,
# which can have different result depending on the execution order of cells.
print('z:', z)
# {/fact}


# {fact [email protected] defects=0}
# —— Code Cell 1 —— #
import math
# —— Code Cell 2 —— #
x = int(input('x:'))
y = int(input('y:'))
# —— Code Cell 3 —— #
z = '5'
# —— Code Cell 4 —— #
# Compliant: Even though there are 2 different types assigned to variable `z`
# in two different cells, it is only used within one of the two cells.
z = math.sqrt(x**2 + y**2)
print('z:', z)
# {/fact}