Sha256: 0a51272fe528e3dcf11fa8feb4bde9d2dd6b51d181854d6d1c9592242429cee8
Contents?: true
Size: 317 Bytes
Versions: 28
Compression:
Stored size: 317 Bytes
Contents
#!/usr/bin/python # Copyright (c) 2012 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. import sys src = open(sys.argv[1]) dst = open(sys.argv[2], 'w') for ch in src.read(): dst.write('%d,\n' % ord(ch)) src.close() dst.close()
Version data entries
28 entries across 28 versions & 5 rubygems