Advertisement
alirezaimi

Untitled

Oct 25th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. def zzz():
  2. x= None
  3. code= '''
  4. for x in (1, 3, 6, 9 ,12) :
  5. self.ui.lineEdit_xmah.setEnabled(True)
  6. '''
  7. con={}
  8. con["x"]= x
  9. exec(code, con)
  10.  
  11. ==error :
  12.  
  13. Traceback (most recent call last):
  14. File "/home/alireza/WorkspaceAptanaS/test-pyqt-project/s.py", line 67, in chBoxSer_status
  15. zzz()
  16. File "/home/alireza/WorkspaceAptanaS/test-pyqt-project/s.py", line 37, in zzz
  17. exec(code, con)
  18. File "<string>", line 3, in <module>
  19. NameError: name 'self' is not defined
  20.  
  21.  
  22. ===== OR
  23. def zzz():
  24. x= None
  25. code= '''
  26. for x in (1, 3, 6, 9 ,12) :
  27. self.ui.lineEdit_xmah.setEnabled(True)
  28. '''
  29. con={}
  30. con["x"]= x
  31. exec(code, con)
  32. ==error :
  33. Traceback (most recent call last):
  34. File "/home/alireza/WorkspaceAptanaS/test-pyqt-project/s.py", line 67, in chBoxSer_status
  35. zzz()
  36. File "/home/alireza/WorkspaceAptanaS/test-pyqt-project/s.py", line 37, in zzz
  37. exec(code, con)
  38. File "<string>", line 3, in <module>
  39. NameError: name 'self' is not defined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement