Commit 3841f613 authored by Jason Madden's avatar Jason Madden

Fix test__all__.

parent cb67ec7e
......@@ -14,7 +14,8 @@ MAPPING = {'gevent.local': '_threading_local',
'gevent.thread': '_thread' if six.PY3 else 'thread',
'gevent.subprocess': 'subprocess',
'gevent.os': 'os',
'gevent.threading': 'threading'}
'gevent.threading': 'threading',
'gevent.builtins': 'builtins' if six.PY3 else '__builtin__', }
class ANY(object):
......@@ -28,7 +29,8 @@ NOT_IMPLEMENTED = {
'thread': ['allocate', 'exit_thread', 'interrupt_main', 'start_new'],
'select': ANY,
'os': ANY,
'threading': ANY}
'threading': ANY,
'builtins' if six.PY3 else '__builtin__': ANY, }
COULD_BE_MISSING = {
'socket': ['create_connection', 'RAND_add', 'RAND_egd', 'RAND_status']}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment