Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1.  
  2. pydev_imports.execfile(filename, global_vars, local_vars) #(line 197) / primo errore
  3.  
  4. exec(compile(contents+"\n", file, 'exec'), glob, loc) #(line 18) / secondo errore
  5.  
  6. raise ValueError('Stop here.') #(line 274) / terzo errore
  7.  
  8.  
  9. Traceback (most recent call last):
  10. File "<input>", line 1, in <module>
  11. File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\_pydev_bundle\pydev_umd.py", line 197, in runfile
  12. pydev_imports.execfile(filename, global_vars, local_vars)
  13. File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\_pydev_imps\_pydev_execfile.py", line 18, in
  14. execfile
  15. exec(compile(contents+"\n", file, 'exec'), glob, loc)
  16. File "C:/Users/Andrea/Desktop/idro/test_stuff.py", line 274, in <module>
  17. raise ValueError('Stop here.')
  18. ValueError: Stop here.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement