Repair some accidents causing Windows failures:
+ test_compare. While None compares less than anything else, it's not
always the case that None has the smallest id().
+ test_descr. The output of %p (pointer) formats varies across platforms.
In particular, on Windows it doesn't produce a leading "0x".
diff --git a/Lib/test/test_compare.py b/Lib/test/test_compare.py
index 1d8b947..bc833ea 100644
--- a/Lib/test/test_compare.py
+++ b/Lib/test/test_compare.py
@@ -45,7 +45,7 @@
else:
print "%s != %s" % (a, b)
# Ensure default comparison compares id() of args
- L = [None]
+ L = []
for i in range(10):
L.insert(len(L)/2, Empty())
for a in L: