File: patcher_existing_locks_exception.py

package info (click to toggle)
python-eventlet 0.40.3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,200 kB
  • sloc: python: 25,109; sh: 78; makefile: 32
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')