Author: mattip <[email protected]>
Branch: 
Changeset: r75776:7b99e3307405
Date: 2015-02-08 23:23 +0200
http://bitbucket.org/pypy/pypy/changeset/7b99e3307405/

Log:    fix for win32

diff --git a/rpython/rlib/test/test_rsocket.py 
b/rpython/rlib/test/test_rsocket.py
--- a/rpython/rlib/test/test_rsocket.py
+++ b/rpython/rlib/test/test_rsocket.py
@@ -574,6 +574,7 @@
 
 def test_translate_netdb_lock():
     def f():
+        rsocket_startup()
         gethostbyaddr("localhost")
         return 0
     fc = compile(f, [])
@@ -581,6 +582,7 @@
 
 def test_translate_netdb_lock_thread():
     def f():
+        rsocket_startup()
         gethostbyaddr("localhost")
         return 0
     fc = compile(f, [], thread=True)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to