- 01 Ara, 2006 1 kayıt (commit)
-
-
Walter Dörwald yazdı
port the tests to unittest and add a few new tests.
-
- 28 Mar, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
Makes test_xdrlib pass.
-
- 29 Eyl, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 24 Şub, 2005 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Also add xdrlib._test into the test suite.
-
- 12 Şub, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
From SF patch #852334.
-
- 27 Şub, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 31 Mar, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 16 Agu, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 01 Mar, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
giving it a slight facelift
-
- 15 Ock, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 12 Ara, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects.
-
- 26 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 29 May, 1997 1 kayıt (commit)
-
-
Barry Warsaw yazdı
longs where the top bit is set. First, change the masks so that they are `L' longs, otherwise the sign bits will get propagated to the result. Next, do not coerce to int before sending to pack_uint() otherwise Python will generate an OverflowError. Here is a test program that fails without the patch, but now succeeds: import xdrlib addr = (132, 151, 1, 71) uint = 0L for a in addr: uint = (uint << 8) | a ulong64 = uint << 32 p = xdrlib.Packer() p.pack_uhyper(ulong64) buf = p.get_buffer() u = xdrlib.Unpacker(buf) ulong64prime = u.unpack_uhyper() if ulong64 == ulong64prime: print 'okay' else: print 'bogus' print ulong64, ulong64prime
-
- 14 Ock, 1997 1 kayıt (commit)
-
-
Barry Warsaw yazdı
raise ConversionError, msg where `msg' is passed as the argument to the constructor.
-
- 02 Ock, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
data formats. The _xdr module is no longer used, since struct supports the required IEEE floats and doubles. (I have one doubt about not using _xdr. The struct module doesn't handle Inf, NaN and gradual underflow correctly. If the _xdr module does these things better, it may still have a (small) competitive advantage. On the other hand, since not all platforms support IEEE floating point, it's not clear that it would be a good idea to ever transfer Inf or NaNs. Gradual underflow can be fixed in the struct module.
-
- 04 Ara, 1996 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 22 Eki, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 26 Agu, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 19 Agu, 1996 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-