summary refs log tree commit diff stats
path: root/doc/pydoc/ranger.gui.widgets.html
Commit message (Expand)AuthorAgeFilesLines
* updated pydochut2010-03-121-12/+15
* incremented version number and updated pydoc html files v1.0.3hut2010-02-161-6/+6
* 1.0.2! v1.0.2hut2010-01-141-1/+1
* updated pydoc documentationhut2010-01-131-2/+14
* updated pydoc documentationhut2010-01-021-27/+29
* moved pydoc pages to doc/pydochut2009-12-251-0/+128
n14' href='#n14'>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()