We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Originally reported by: Chris Wong (BitBucket: wongc, GitHub: @wongc?)
Given files: t.py, tmp/u.py and tmp/v.py (and of course an empty tmp/init.py)
t.py
#!python import tmp.u tmp.u.obfuscate()
tmp/u.py
#!python from .v import *
tmp/v.py
#!python def obfuscate(): print("hello world")
I will always get a E1101 error under Python 3.3 for t.py
#! ************* Module t C0111: 1,0: Missing docstring E1101: 4,0: Module 'tmp.u' has no 'obfuscate' member
This works fine using Pylint under 2.6.
The text was updated successfully, but these errors were encountered:
Original comment by Sylvain Thénault (BitBucket: sthenault, GitHub: @sthenault?):
Removing version: 1.0 (automated comment)
Sorry, something went wrong.
Original comment by Torsten Marek (BitBucket: tmarek, GitHub: @tmarek?):
I am unable to reproduce this error with current head. Please reopen if you still see this after the next release.
No branches or pull requests
Originally reported by: Chris Wong (BitBucket: wongc, GitHub: @wongc?)
Given files: t.py, tmp/u.py and tmp/v.py (and of course an empty tmp/init.py)
t.py
tmp/u.py
tmp/v.py
I will always get a E1101 error under Python 3.3 for t.py
This works fine using Pylint under 2.6.
The text was updated successfully, but these errors were encountered: