Blame SOURCES/00173-workaround-ENOPROTOOPT-in-bind_port.patch

b7580a
diff -up Python-2.7.3/Lib/test/test_support.py.rhbz913732 Python-2.7.3/Lib/test/test_support.py
b7580a
--- Python-2.7.3/Lib/test/test_support.py.rhbz913732	2013-03-04 16:11:53.757315921 -0500
b7580a
+++ Python-2.7.3/Lib/test/test_support.py	2013-03-04 16:12:11.331314722 -0500
b7580a
@@ -304,7 +304,8 @@ def bind_port(sock, host=HOST):
b7580a
             if sock.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR) == 1:
b7580a
                 raise TestFailed("tests should never set the SO_REUSEADDR "   \
b7580a
                                  "socket option on TCP/IP sockets!")
b7580a
-        if hasattr(socket, 'SO_REUSEPORT'):
b7580a
+        if hasattr(socket, 'SO_REUSEPORT') \
b7580a
+                and 'WITHIN_PYTHON_RPM_BUILD' not in os.environ: # rhbz#913732
b7580a
             if sock.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT) == 1:
b7580a
                 raise TestFailed("tests should never set the SO_REUSEPORT "   \
b7580a
                                  "socket option on TCP/IP sockets!")