summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_noerror_socket_member.py
blob: 1cdafe66c818edd8cb6b88fad2eb350ba91424e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""Testing Pylint with the socket module

Pylint Problem
==============

Version used:

    - Pylint 0.10.0
    - Logilab common 0.15.0
    - Logilab astroid 0.15.1

False E1101 positive, line 23:

    Instance of '_socketobject' has no 'connect' member

"""
from __future__ import absolute_import
__revision__ = None
import socket

if __name__ == "__main__":

    SCKT = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    SCKT.connect(('127.0.0.1', 80))
    SCKT.close()