Skip to content
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

Closed
dondublon opened this issue Jan 14, 2019 · 9 comments
Closed

'getattr' is not defined with PyCharm debug #464

dondublon opened this issue Jan 14, 2019 · 9 comments

Comments

@dondublon
Copy link

dondublon commented Jan 14, 2019

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.

@mrbean-bremen
Copy link
Member

Ok, I cannot reproduce the exact same problem, but a similar one (under Python 2.7 only).
A part of the PyCharm testrunner is obviously not happy with being patched with the fake file system.
Adding the offending module to skip names solves the problem for me:

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 additional_skip_names parameter is for. You can use your own derived version of Patcher that always sets that parameter.

@dondublon
Copy link
Author

Yes, Python 2.7.
Thank you, I'll follow your advice.
Of course, the case is really specific, but pyfakefs is the only library that causes such an exception.

@mrbean-bremen
Copy link
Member

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.

@dondublon
Copy link
Author

I guess, if I make this correction, I lose some info or functional. Can you predict, which?

@mrbean-bremen
Copy link
Member

No, you shouldn't lose anything. This affects only the test runner.

@dondublon
Copy link
Author

Thank you.

@mrbean-bremen
Copy link
Member

mrbean-bremen commented Jan 18, 2019

@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...

mrbean-bremen added a commit to mrbean-bremen/pyfakefs that referenced this issue Jan 18, 2019
- if running under PyCharm, the module is now excluded
- see pytest-dev#464
@mrbean-bremen
Copy link
Member

Shall be fixed in master - closing. Please reopen if that does not work for you.

@dondublon
Copy link
Author

Wow!
That is very kind of you, thanks a milliion!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants