File: patcher_existing_locks_exception.py

package info (click to toggle)
python-eventlet 0.40.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,200 kB
  • sloc: python: 25,101; sh: 78; makefile: 31
file content (18 lines) | stat: -rw-r--r-- 306 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
__test__ = False


class BadDict(dict):
    def items(self):
        raise Exception()


if __name__ == '__main__':
    import threading
    test_lock = threading.RLock()
    test_lock.acquire()
    baddict = BadDict(testkey='testvalue')

    import eventlet
    eventlet.monkey_patch()

    print('pass')