diff --git a/examples/network/http_client.py b/examples/network/http_client.py
index f042bfeb837d9f66fc52273af743a208ddc11999..d71f76b65f9f4affae76fe63c628eff8bd8a96c6 100644
--- a/examples/network/http_client.py
+++ b/examples/network/http_client.py
@@ -6,19 +6,9 @@ except:
 
 s = _socket.socket()
 
-if 1:
-    ai = _socket.getaddrinfo("google.com", 80)
-    print("Address infos:", ai)
-    addr = ai[0][4]
-else:
-    # Deprecated ways to construct connection address
-    addr = _socket.sockaddr_in()
-    addr.sin_family = 2
-    #addr.sin_addr = (0x0100 << 16) + 0x007f
-    #addr.sin_addr = (0x7f00 << 16) + 0x0001
-    #addr.sin_addr = _socket.inet_aton("127.0.0.1")
-    addr.sin_addr = _socket.gethostbyname("google.com")
-    addr.sin_port = _socket.htons(80)
+ai = _socket.getaddrinfo("google.com", 80)
+print("Address infos:", ai)
+addr = ai[0][4]
 
 print("Connect address:", addr)
 s.connect(addr)