mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-04 09:40:19 +00:00
gentypefuncs.py: Use python3
This commit is contained in:
parent
0f7f4225de
commit
c9016fb8a3
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
@ -13,12 +13,12 @@ in_files = sys.argv[2:]
|
|||||||
funcs = []
|
funcs = []
|
||||||
|
|
||||||
|
|
||||||
if debug: print 'Output file: ', out_file
|
if debug: print ('Output file: ', out_file)
|
||||||
|
|
||||||
if debug: print len(in_files), 'input files'
|
if debug: print (len(in_files), 'input files')
|
||||||
|
|
||||||
for filename in in_files:
|
for filename in in_files:
|
||||||
if debug: print 'Input file: ', filename
|
if debug: print ('Input file: ', filename)
|
||||||
with open(filename, "r") as f:
|
with open(filename, "r") as f:
|
||||||
for line in f:
|
for line in f:
|
||||||
line = line.rstrip('\n').rstrip('\r')
|
line = line.rstrip('\n').rstrip('\r')
|
||||||
@ -28,7 +28,7 @@ for filename in in_files:
|
|||||||
func = match.group(0)
|
func = match.group(0)
|
||||||
if not func in funcs:
|
if not func in funcs:
|
||||||
funcs.append(func)
|
funcs.append(func)
|
||||||
if debug: print 'Found', func
|
if debug: print ('Found ', func)
|
||||||
|
|
||||||
file_output = 'G_GNUC_BEGIN_IGNORE_DEPRECATIONS\n'
|
file_output = 'G_GNUC_BEGIN_IGNORE_DEPRECATIONS\n'
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ for f in funcs:
|
|||||||
else:
|
else:
|
||||||
file_output += '*tp++ = {0}();\n'.format(f)
|
file_output += '*tp++ = {0}();\n'.format(f)
|
||||||
|
|
||||||
if debug: print len(funcs), 'functions'
|
if debug: print (len(funcs), 'functions')
|
||||||
|
|
||||||
ofile = open(out_file, "w")
|
ofile = open(out_file, "w")
|
||||||
ofile.write(file_output)
|
ofile.write(file_output)
|
||||||
|
Loading…
Reference in New Issue
Block a user