about summary refs log tree commit diff stats
path: root/js/inknswitch
Commit message (Expand)AuthorAgeFilesLines
* *elioat2024-01-152-2/+3
* *elioat2024-01-152-43/+40
* *elioat2024-01-151-1/+6
* *elioat2024-01-1530-0/+95
* *elioat2024-01-151-0/+15
* *elioat2024-01-153-52/+128
* *elioat2024-01-152-1/+6
* *elioat2024-01-131-1/+1
* still doesn't work great on mobile...but, do I care?elioat2024-01-132-8/+20
* *elioat2024-01-122-23/+6
* *elioat2024-01-122-5/+5
* *elioat2024-01-121-14/+13
* *elioat2024-01-121-10/+10
* *elioat2024-01-121-1/+1
* *elioat2024-01-122-3/+43
* *elioat2024-01-122-16/+45
* *elioat2024-01-122-1/+10
* *elioat2024-01-121-1/+1
* *elioat2024-01-121-1/+1
* *elioat2024-01-121-0/+1
* *elioat2024-01-121-9/+16
* *elioat2024-01-122-0/+146
ss="c1"># You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. def TODO(fnc): def result(*arg, **kw): try: fnc(*arg, **kw) except: pass # failure expected return result 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()