| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # | 2 # |
| 3 # Copyright (C) 2013 Google Inc. All rights reserved. | 3 # Copyright (C) 2013 Google Inc. All rights reserved. |
| 4 # | 4 # |
| 5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
| 6 # modification, are permitted provided that the following conditions are | 6 # modification, are permitted provided that the following conditions are |
| 7 # met: | 7 # met: |
| 8 # | 8 # |
| 9 # * Redistributions of source code must retain the above copyright | 9 # * Redistributions of source code must retain the above copyright |
| 10 # notice, this list of conditions and the following disclaimer. | 10 # notice, this list of conditions and the following disclaimer. |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 info_individuals = read_pickle_files(args) | 255 info_individuals = read_pickle_files(args) |
| 256 | 256 |
| 257 compute_interfaces_info_overall(info_individuals) | 257 compute_interfaces_info_overall(info_individuals) |
| 258 write_pickle_file(interfaces_info_filename, | 258 write_pickle_file(interfaces_info_filename, |
| 259 interfaces_info, | 259 interfaces_info, |
| 260 options.write_file_only_if_changed) | 260 options.write_file_only_if_changed) |
| 261 | 261 |
| 262 | 262 |
| 263 if __name__ == '__main__': | 263 if __name__ == '__main__': |
| 264 sys.exit(main()) | 264 sys.exit(main()) |
| OLD | NEW |