diff options
| author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2011-01-06 17:18:43 +0100 |
|---|---|---|
| committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2011-01-06 17:18:43 +0100 |
| commit | 91e8b4ce4adb8b19c3d928608f9dc6f1dec2a84e (patch) | |
| tree | a72fe1c4c88a27e4c4708a9f89e8ddf4ffb3d291 | |
| parent | a1dc8eb5ef12f566138ff725bba1a63eb3c62cec (diff) | |
| download | pylint-git-91e8b4ce4adb8b19c3d928608f9dc6f1dec2a84e.tar.gz | |
#57311: Remove mentions of optik
| -rw-r--r-- | README | 1 | ||||
| -rw-r--r-- | checkers/typecheck.py | 3 |
2 files changed, 1 insertions, 3 deletions
@@ -8,7 +8,6 @@ Pylint requires the logilab-astng (version >= 0.21.0), logilab-common * http://www.logilab.org/projects/astng * http://www.logilab.org/projects/common -* http://optik.sourceforge.net/ Install ------- diff --git a/checkers/typecheck.py b/checkers/typecheck.py index bb1086d3b..eec538d80 100644 --- a/checkers/typecheck.py +++ b/checkers/typecheck.py @@ -161,8 +161,7 @@ accessed.'} if isinstance(owner, Instance) and owner.has_dynamic_getattr(): continue # explicit skipping of optparse'Values class - if owner.name == 'Values' and \ - owner.root().name in ('optik', 'optparse'): + if owner.name == 'Values' and owner.root().name == 'optparse': continue missingattr.add((owner, name)) continue |
