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

Pylint 0.28 reports a false positive E1103 under Python 3.3 #9

Closed
pylint-bot opened this issue May 2, 2013 · 2 comments
Closed

Pylint 0.28 reports a false positive E1103 under Python 3.3 #9

pylint-bot opened this issue May 2, 2013 · 2 comments
Labels

Comments

@pylint-bot
Copy link

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.


@pylint-bot
Copy link
Author

Original comment by Sylvain Thénault (BitBucket: sthenault, GitHub: @sthenault?):


Removing version: 1.0 (automated comment)

@pylint-bot
Copy link
Author

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.

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

No branches or pull requests

1 participant