heappop():  Use "while True" instead of "while 1".
diff --git a/Lib/heapq.py b/Lib/heapq.py
index 6264700..524f65c 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -142,7 +142,7 @@
     returnitem = heap[0]
     item = heap.pop()
     pos = 0
-    while 1:
+    while True:
         child2pos = (pos + 1) * 2
         child1pos = child2pos - 1
         if child2pos < endpos: