-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'getattr' is not defined with PyCharm debug #464
Comments
Ok, I cannot reproduce the exact same problem, but a similar one (under Python 2.7 only). with Patcher(additional_skip_names=['pydevd']) as patcher:
patcher.fs.create_dir(r"D:\somefile") I'm not sure if it is a good idea to add this generally to pyfakefs, as this a specific case, but this is actually what the |
Yes, Python 2.7. |
Yes, this is due to the fact that it patches file system calls in all loaded modules, which can be problematic if some the test environment needs to access the real file system after the test setup. A similar problem happens with pytest, therefore the pyfakefs pytest plugin skips some pytest modules. |
I guess, if I make this correction, I lose some info or functional. Can you predict, which? |
No, you shouldn't lose anything. This affects only the test runner. |
Thank you. |
@dondublon - I found that PyCharm sets a specific environment variable for processes started from it, so I will add this fix generically. I hope that works for you... |
- if running under PyCharm, the module is now excluded - see pytest-dev#464
Shall be fixed in master - closing. Please reopen if that does not work for you. |
Wow! |
Describe the bug
When I'm going to stop on PyCharm breakpoint, this exception is raised:
Connected to pydev debugger (build 182.4505.26)
Traceback (most recent call last):
File "_pydevd_bundle\pydevd_cython_win32_27_64.pyx", line 750, in _pydevd_bundle.pydevd_cython_win32_27_64.PyDBFrame.trace_dispatch
File "_pydevd_bundle\pydevd_cython_win32_27_64.pyx", line 254, in _pydevd_bundle.pydevd_cython_win32_27_64.PyDBFrame.do_wait_suspend
File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\pydevd.py", line 778, in do_wait_suspend
File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\pydevd.py", line 469, in process_internal_commands
NameError: global name 'getattr' is not defined
Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\pydevd.py", line 1664, in
main()
File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\pydevd.py", line 1658, in main
globals = debugger.run(setup['file'], None, None, is_module)
File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\pydevd.py", line 1068, in run
pydev_imports.execfile(file, globals, locals) # execute the script
File "D:/Perforce/KiteTestsDevelopment/kite/libs/test2/pyfakefstest.py", line 4, in
patcher.fs.create_dir("D:\somefile")
File "D:/Perforce/KiteTestsDevelopment/kite/libs/test2/pyfakefstest.py", line 4, in
patcher.fs.create_dir("D:\somefile")
File "_pydevd_bundle\pydevd_cython_win32_27_64.pyx", line 969, in _pydevd_bundle.pydevd_cython_win32_27_64.SafeCallWrapper.call
File "_pydevd_bundle\pydevd_cython_win32_27_64.pyx", line 515, in _pydevd_bundle.pydevd_cython_win32_27_64.PyDBFrame.trace_dispatch
File "_pydevd_bundle\pydevd_cython_win32_27_64.pyx", line 759, in _pydevd_bundle.pydevd_cython_win32_27_64.PyDBFrame.trace_dispatch
File "_pydevd_bundle\pydevd_cython_win32_27_64.pyx", line 750, in _pydevd_bundle.pydevd_cython_win32_27_64.PyDBFrame.trace_dispatch
File "_pydevd_bundle\pydevd_cython_win32_27_64.pyx", line 254, in _pydevd_bundle.pydevd_cython_win32_27_64.PyDBFrame.do_wait_suspend
File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\pydevd.py", line 778, in do_wait_suspend
self.process_internal_commands()
File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\pydevd.py", line 469, in process_internal_commands
if getattr(t, 'is_pydev_daemon_thread', False):
NameError: global name 'getattr' is not defined
How To Reproduce
Run in PyCharm this code:
from pyfakefs.fake_filesystem_unittest import Patcher
with Patcher() as patcher:
patcher.fs.create_dir("D:\somefile") # <- breakpoint here!
Your enviroment
Windows-7-6.1.7601-SP1
('Python', '2.7.15 (v2.7.15:ca079a3ea3, Apr 30 2018, 16:30:26) [MSC v.1500 64 bit (AMD64)]')
('pyfakefs', '3.5.5')
PyCharm 2018.2.4.
The text was updated successfully, but these errors were encountered: