Showing content from http://mail.python.org/pipermail/python-dev/attachments/20080621/6bf90fed/attachment.py below:
old_skipped = new_skipped = 0 old_seen = new_seen = 0 survivors = 0 # will always equal new_skipped print " total old_inspected new_inspected" for total in range(1, 10000): if old_skipped < 9: old_skipped += 1 old_tag = ' ' else: # Old Collection old_skipped = 0 old_seen += total old_tag = '*' if new_skipped < 9 or survivors*10 < total: survivors += 1 new_skipped += 1 new_tag = ' ' else: # New Collection survivors = 0 new_skipped = 0 new_seen += total new_tag = '*' if old_tag=='*' or new_tag=='*': print "%5d %10d%s %10d%s" % (total, old_seen, old_tag, new_seen, new_tag)
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4