diff options
author | Georg Brandl <georg@python.org> | 2007-12-16 11:06:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-16 11:06:09 (GMT) |
commit | 6f6f6adea2fa2e38c49cd207812e09238de4d6f0 (patch) | |
tree | 32ffec0211f78379d5120287cf46988c65be9c84 /Lib/socket.py | |
parent | 4257ca7afbf49317e211e8ff137b564666e3ea5b (diff) | |
download | cpython-6f6f6adea2fa2e38c49cd207812e09238de4d6f0.zip cpython-6f6f6adea2fa2e38c49cd207812e09238de4d6f0.tar.gz cpython-6f6f6adea2fa2e38c49cd207812e09238de4d6f0.tar.bz2 |
Dummy commit to investigate #1617.
Diffstat (limited to 'Lib/socket.py')
-rw-r--r-- | Lib/socket.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/socket.py b/Lib/socket.py index 30be5c5..b3fb9af 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -459,4 +459,5 @@ def create_connection(address, timeout=None): if sock is not None: sock.close() + raise RuntimeError("error %s, msg %s" % (error, msg)) raise error, msg |