<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>I think I figured out what the '[0]' is for in that dump() I wrote:<br><br>def dump(aMap):<br>    for bucket in aMap:<br>        if bucket:<br>            for k, v in bucket:<br>                bucket_index = hash_key(aMap, k)<br>                slot_index = get_slot(aMap, k)[0]<br>                print bucket_index, slot_index, k, v<br><br>With get_slot(), a tuple of 3 items is returned, and putting the [0] there specifies to only have the '0th' item accessed in the tuple for the dump().<br><br><br>                                          </div></body>
</html>