10 lines
190 B
Python
10 lines
190 B
Python
|
|
import warnings
|
|
|
|
warnings.warn("indra.ipc.httputil has been deprecated; use eventlet.httpc instead", DeprecationWarning, 2)
|
|
|
|
from eventlet.httpc import *
|
|
|
|
|
|
makeConnection = make_connection
|