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_py3.py 209B

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