blob: ffa3e9c41ccd7d578c65f528ff3118f15362ac7f (
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
"""
__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()
|