/usr/share/pygobject/2.0/codegen/createdefs.py is in python-gobject-2-dev 2.28.6-13.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #! /usr/bin/python
import sys
def main(args):
output = args[1]
input = args[2:]
outfd = open(output, 'w')
outfd.write(';; -*- scheme -*-\n')
outfd.write(';; THIS FILE IS GENERATED - DO NOT EDIT\n')
for filename in input:
outfd.write('(include "%s")\n' % filename)
outfd.close()
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv))
|