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.

eval_used.py 252B

12345678910
  1. """test for eval usage"""
  2. eval('os.listdir(".")') # [eval-used]
  3. eval('os.listdir(".")', globals={}) # [eval-used]
  4. eval('os.listdir(".")', globals=globals()) # [eval-used]
  5. def func():
  6. """ eval in local scope"""
  7. eval('b = 1') # [eval-used]