Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exec_used_py2.py 209B

12345678910
  1. # pylint: disable=missing-docstring
  2. exec 'a = __revision__' # [exec-used]
  3. VALUES = {}
  4. exec 'a = 1' in VALUES # [exec-used]
  5. exec 'a = 1' in globals() # [exec-used]
  6. def func():
  7. exec 'b = 1' # [exec-used]