Issue #11626: Add _SizeT functions to stable ABI.

This commit is contained in:
Martin v. Löwis 2012-06-24 00:00:30 +02:00
parent 788306a9ab
commit 75aeaa9b18
5 changed files with 21 additions and 2 deletions

View file

@ -7,8 +7,10 @@ out.write('LIBRARY "python33"\n')
out.write('EXPORTS\n')
inp = open("python3.def")
inp.readline()
line = inp.readline()
while line.strip().startswith(';'):
line = inp.readline()
line = inp.readline() # LIBRARY
assert line.strip()=='EXPORTS'
for line in inp: