about summary refs log tree commit diff stats
path: root/html/011run.cc.html
Commit message (Expand)AuthorAgeFilesLines
* 5893Kartik Agaram2020-01-141-391/+377
* 5806Kartik Agaram2019-12-091-36/+36
* 5659Kartik Agaram2019-09-151-14/+14
* 5582Kartik Agaram2019-08-251-1/+1
* 5490Kartik Agaram2019-07-271-439/+429
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+541
#n2'>2 3 4 5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29




                                                                


                                                                         


                                        


                                             














                                     
import os, sys

__all__ = [ x[0:x.index('.')] \
		for x in os.listdir(os.path.dirname(__file__)) \
		if x.startswith('tc_') ]

def init():
	sys.path.append(os.path.abspath(os.path.join(sys.path[0], '..')))

class Fake(object):
	def __getattr__(self, attrname):
		val = Fake()
		self.__dict__[attrname] = val
		return val

	def __call__(self, *_):
		return Fake()

	def __clear__(self):
		self.__dict__.clear()

	def __iter__(self):
		return iter(())

class OK(Exception):
	pass

def raise_ok(*_, **__):
	raise OK()