view publish.py @ 24:c23d81f4a1a3

Score returned by TestCase.__call__() is now normalized to 0..1 TestCase.__call__() now returns the fraction (a number from 0 to 1) of case.points that is to be awarded. Bug fix: %-patterns in configuration variables common to all problems are now substituted.
author Oleg Oshmyan <chortos@inbox.lv>
date Thu, 23 Sep 2010 00:11:24 +0000
parents a2c9f7cfa174
children
line wrap: on
line source

#! /usr/bin/python
# Copyright (c) 2009-2010 Chortos-2 <chortos@inbox.lv>

with open('test-svn.py') as t:
	f = t.read()
i = f.find('# $Rev: ')
j = f.find('\n', i)
rev = f[i+8:j-2]
f = f[0:i] + f[j+1:]
f = f.replace('$$REV$$', rev)
with open('test.py', 'wb') as t:
	t.write(f)