source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/gluon/packages/dal/pydal/_globals.py

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 208 bytes
Line 
1import threading
2
3GLOBAL_LOCKER = threading.RLock()
4THREAD_LOCAL = threading.local()
5
6DEFAULT = lambda: None
7
8
9def IDENTITY(x):
10    return x
11
12
13def OR(a, b):
14    return a | b
15
16
17def AND(a, b):
18    return a & b
Note: See TracBrowser for help on using the repository browser.