block by jsundram 5618041

implementation of BoxyLady2 aimed at pypy

To get pypy installed:

try:
      from sys import getrefcount
  except ImportError: #pypy
      import gc
      getrefcount = lambda x: len(gc.get_referrers(x)) - 1

BoxyLady2.py