Close all pooled connections and disable the pool.
(self)
| 108 | return False |
| 109 | |
| 110 | def close(self) -> None: |
| 111 | """ |
| 112 | Close all pooled connections and disable the pool. |
| 113 | """ |
| 114 | |
| 115 | |
| 116 | # This is taken from http://hg.python.org/cpython/file/7aaba721ebc0/Lib/socket.py#l252 |
no outgoing calls
no test coverage detected