# HG changeset patch # User Jeff Hammel # Date 1565125281 25200 # Node ID cd1ebc68739f7cd9ae701e9bbe1188d11be2bcbb # Parent 79b52aec477e34adcf758ab9133223550496031e -> python3 diff -r 79b52aec477e -r cd1ebc68739f python/dictify.py --- a/python/dictify.py Fri May 24 15:34:11 2019 -0700 +++ b/python/dictify.py Tue Aug 06 14:01:21 2019 -0700 @@ -4,9 +4,9 @@ def dictify(string): lines = [ i.strip() for i in string.split('\n') if i.strip() ] - return dict([i.split(divider,1) for i in lines + return dict([i.split(divider,1) for i in lines if len(i.split(divider,1)) == 2]) - + if __name__ == '__main__': import sys feh = sys.stdin.read() @@ -14,6 +14,6 @@ if sys.argv[1:]: for i in sys.argv[1:]: if thedict.has_key(i): - print thedict[i] + print (thedict[i]) else: - print thedict + print (thedict)