summaryrefslogtreecommitdiff
path: root/sandbox/test_notices.py
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/test_notices.py')
-rw-r--r--sandbox/test_notices.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/sandbox/test_notices.py b/sandbox/test_notices.py
deleted file mode 100644
index fafa969..0000000
--- a/sandbox/test_notices.py
+++ /dev/null
@@ -1,12 +0,0 @@
-def test():
- import sys, os, thread, psycopg2
- def test2():
- while True:
- for filename in map(lambda m: getattr(m, "__file__", None), sys.modules.values()):
- os.stat("/dev/null")
- connection = psycopg2.connect(database="test")
- cursor = connection.cursor()
- thread.start_new_thread(test2, ())
- while True:
- cursor.execute("COMMIT")
-test()