Repository URL to install this package:
|
Version:
1.1.1 ▾
|
import weakref
class Dummy:
def __init__(self):
__import__('gevent.core')
try:
assert weakref.ref(Dummy())() is None
from gevent import socket
assert weakref.ref(socket.socket())() is None
except AssertionError:
import sys
if hasattr(sys, 'pypy_version_info'):
# PyPy uses a non refcounted GC which may defer
# the collection of the weakref, unlike CPython
pass
else:
raise