Author: Matti Picus <matti.pi...@gmail.com> Branch: Changeset: r54774:b702c733839a Date: 2012-04-27 12:49 +0300 http://bitbucket.org/pypy/pypy/changeset/b702c733839a/
Log: merge some trivial changes from win32-cleanup2 diff --git a/pypy/module/_multiprocessing/test/test_connection.py b/pypy/module/_multiprocessing/test/test_connection.py --- a/pypy/module/_multiprocessing/test/test_connection.py +++ b/pypy/module/_multiprocessing/test/test_connection.py @@ -157,13 +157,15 @@ raises(IOError, _multiprocessing.Connection, -15) def test_byte_order(self): + import socket + if not 'fromfd' in dir(socket): + skip('No fromfd in socket') # The exact format of net strings (length in network byte # order) is important for interoperation with others # implementations. rhandle, whandle = self.make_pair() whandle.send_bytes("abc") whandle.send_bytes("defg") - import socket sock = socket.fromfd(rhandle.fileno(), socket.AF_INET, socket.SOCK_STREAM) data1 = sock.recv(7) diff --git a/pypy/module/_winreg/test/test_winreg.py b/pypy/module/_winreg/test/test_winreg.py --- a/pypy/module/_winreg/test/test_winreg.py +++ b/pypy/module/_winreg/test/test_winreg.py @@ -198,7 +198,10 @@ import nt r = ExpandEnvironmentStrings(u"%windir%\\test") assert isinstance(r, unicode) - assert r == nt.environ["WINDIR"] + "\\test" + if 'WINDIR' in nt.environ.keys(): + assert r == nt.environ["WINDIR"] + "\\test" + else: + assert r == nt.environ["windir"] + "\\test" def test_long_key(self): from _winreg import ( diff --git a/pypy/module/rctime/interp_time.py b/pypy/module/rctime/interp_time.py --- a/pypy/module/rctime/interp_time.py +++ b/pypy/module/rctime/interp_time.py @@ -572,7 +572,7 @@ if i < length and format[i] == '#': # not documented by python i += 1 - if i >= length or format[i] not in "aAbBcdfHIjmMpSUwWxXyYzZ%": + if i >= length or format[i] not in "aAbBcdHIjmMpSUwWxXyYzZ%": raise OperationError(space.w_ValueError, space.wrap("invalid format string")) i += 1 diff --git a/pypy/rlib/test/test_rposix.py b/pypy/rlib/test/test_rposix.py --- a/pypy/rlib/test/test_rposix.py +++ b/pypy/rlib/test/test_rposix.py @@ -134,7 +134,7 @@ def test_validate_fd(self): if os.name != 'nt': - py.test.skip('relevant for windows only') + skip('relevant for windows only') assert rposix._validate_fd(0) == 1 fid = open(str(udir.join('validate_test.txt')), 'w') fd = fid.fileno() _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit