[Python-checkins] python/dist/src/Lib/test test_socket.py,1.55,1.56

Jeremy Hylton jeremy@alum.mit.edu
Mon, 12 Aug 2002 18:49:45 -0400


>>>>> "GvR" == gvanrossum  <gvanrossum@users.sourceforge.net> writes:

  GvR> Update of /cvsroot/python/python/dist/src/Lib/test In directory
  GvR> usw-pr-cvs1:/tmp/cvs-serv22584

  GvR> Modified Files:
  GvR> 	test_socket.py
  GvR> Log Message: Don't use hex constants representing negative
  GvR> numbers.

The test in question won't work quite the same anymore.  I can't
really tell if that matters, but it will now test something different
on platforms with 64-bit ints, right?  The C functions being wrapped
by the socket module takes 32-bit unsigned ints.  I wanted to pass the
bits that would represent the unsigned long with the upper half of the
bits set.

Jeremy