Skip to content

Commit c2fa43c

Browse files
authored
Update README.md
1 parent d21ad18 commit c2fa43c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ s.set_proxy(socks.SOCKS4, "localhost", 4444)
5959
# Or
6060
s.set_proxy(socks.HTTP, "5.5.5.5", 8888)
6161

62-
# Can be treated identical to a regular socket object
62+
# Can be treated like a regular socket object
6363
s.connect(("www.somesite.com", 80))
6464
s.sendall("GET / HTTP/1.1 ...")
65-
print s.recv(4096)
65+
print(s.recv(4096))
6666
```
6767

6868
## Monkeypatching ##

0 commit comments

Comments
 (0)