1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Author: Mo Zhou <lumin@debian.org>
Last-Update: 2018-12-06 04:12:15 +0000
Description: Python 3.7 compatibility
--- a/cytoolz/tests/test_inspect_args.py
+++ b/cytoolz/tests/test_inspect_args.py
@@ -405,6 +405,7 @@ def test_introspect_builtin_modules():
add_blacklist(builtins, 'NoneType')
add_blacklist(builtins, '__metaclass__')
add_blacklist(builtins, 'sequenceiterator')
+ add_blacklist(builtins, 'breakpoint')
def is_missing(modname, name, func):
if name.startswith('_') and not name.startswith('__'):
|