(s, options)
| 804 | |
| 805 | |
| 806 | def codec_print(s, options): |
| 807 | s = "%s\n" % s |
| 808 | if hasattr(sys.stdout, "buffer"): |
| 809 | sys.stdout.buffer.write(s.encode(options.output_encoding)) |
| 810 | else: |
| 811 | sys.stdout.write(s.encode(options.output_encoding)) |
| 812 | |
| 813 | |
| 814 | def cmp_perms(options, a, b): |
no outgoing calls
no test coverage detected
searching dependent graphs…