summaryrefslogtreecommitdiff
path: root/sandbox/pbool.py
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/pbool.py')
-rw-r--r--sandbox/pbool.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/sandbox/pbool.py b/sandbox/pbool.py
deleted file mode 100644
index b1b9d5c..0000000
--- a/sandbox/pbool.py
+++ /dev/null
@@ -1,12 +0,0 @@
-class B(object):
- def __init__(self, x):
- if x: self._o = True
- else: self._o = False
- def __getattribute__(self, attr):
- print("ga called", attr)
- return object.__getattribute__(self, attr)
- def _sqlquote(self):
- if self._o:
- return 'It is True'
- else:
- return 'It is False'