Skip to content

Instantly share code, notes, and snippets.

@gaborbernat
Last active October 7, 2021 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaborbernat/5360badab2125b3f81a3bcbce0e94c2a to your computer and use it in GitHub Desktop.
Save gaborbernat/5360badab2125b3f81a3bcbce0e94c2a to your computer and use it in GitHub Desktop.
import builtins
import sys
from importlib import import_module
from types import ModuleType
from sphobjinv import Inventory
inv = Inventory("/home/bernat/git/cpython/Doc/objects.inv")
# 'exception', 'data', 'class', 'method', 'attribute', 'function', 'module'
found = 0
failed_unroll = []
for obj in inv.objects:
if obj.domain != "py":
continue
name, role = obj.name, obj.role
if name.startswith("METH"): # these should be in c domain probably
continue # https://docs.python.org/3/c-api/structures.html?highlight=meth_class#METH_VARARGS
if name.startswith("Py_TPFLAGS"): # these should be in c domain probably
# https://docs.python.org/3/c-api/typeobj.html?highlight=py_tpflags_base_exc_subclass#c.PyTypeObject.tp_flags
continue
if role in ("attribute", "method"):
name, _, attr = name.rpartition(".")
else:
attr = None
if role == "module":
module, key = obj.name, None
else:
module, _, key = name.partition(".")
if not key:
module, key = "builtins", module
if hasattr(builtins, obj.name):
value = getattr(builtins, obj.name)
else:
try:
value = import_module(module)
if key is not None:
value = getattr(value, key)
if attr:
value = getattr(value, attr)
except Exception as exc:
failed_unroll.append((obj, exc))
else:
as_str = repr(value)
traits = {
"method": (
as_str.startswith("<method")
or as_str.startswith("<built-in method")
or as_str.startswith("<bound method")
or as_str.startswith("<built-in function ")
or as_str.startswith("<function ")
or as_str.startswith("<slot wrapper ")
),
"function": (
as_str.startswith("<method")
or as_str.startswith("<built-in method")
or as_str.startswith("<bound method")
or as_str.startswith("<built-in function ")
or as_str.startswith("<function ")
),
"exception": hasattr(value, "__mro__")
and BaseException in value.__mro__,
"class": type in type(value).__mro__ or "<class " in repr(value),
"module": type(value) == ModuleType,
}
traits["attribute"] = all(not i for i in traits.values()) and (
as_str.startswith("<attribute")
or as_str.startswith("<member")
or as_str.startswith("<property")
)
traits["data"] = all(not i for i in traits.values()) or type(value) in (
list,
dict,
tuple,
)
if role == "attribute":
traits["attribute"] = traits["attribute"] or traits["data"]
ok = traits[role]
if not ok:
found += 1
print(f"{found}) {obj.name} should be {role} but is {as_str}")
print(f"failed with {len(failed_unroll)}")
for at, (fail_obj, exc) in enumerate(failed_unroll):
print(f"{at}) {fail_obj} with {exc}")
0) <DataObjStr:: :py:attribute:`OSError.winerror`> with type object 'OSError' has no attribute 'winerror'
1) <DataObjStr:: :py:attribute:`UnicodeError.encoding`> with type object 'UnicodeError' has no attribute 'encoding'
2) <DataObjStr:: :py:attribute:`UnicodeError.end`> with type object 'UnicodeError' has no attribute 'end'
3) <DataObjStr:: :py:attribute:`UnicodeError.object`> with type object 'UnicodeError' has no attribute 'object'
4) <DataObjStr:: :py:attribute:`UnicodeError.reason`> with type object 'UnicodeError' has no attribute 'reason'
5) <DataObjStr:: :py:attribute:`UnicodeError.start`> with type object 'UnicodeError' has no attribute 'start'
6) <DataObjStr:: :py:exception:`WindowsError`> with module 'builtins' has no attribute 'WindowsError'
7) <DataObjStr:: :py:attribute:`__cached__`> with module 'builtins' has no attribute ''
8) <DataObjStr:: :py:attribute:`__file__`> with module 'builtins' has no attribute ''
9) <DataObjStr:: :py:attribute:`__path__`> with module 'builtins' has no attribute ''
10) <DataObjStr:: :py:method:`_thread.lock.acquire`> with module '_thread' has no attribute 'lock'
11) <DataObjStr:: :py:method:`_thread.lock.locked`> with module '_thread' has no attribute 'lock'
12) <DataObjStr:: :py:method:`_thread.lock.release`> with module '_thread' has no attribute 'lock'
13) <DataObjStr:: :py:method:`agen.__anext__`> with module 'builtins' has no attribute 'agen'
14) <DataObjStr:: :py:method:`agen.aclose`> with module 'builtins' has no attribute 'agen'
15) <DataObjStr:: :py:method:`agen.asend`> with module 'builtins' has no attribute 'agen'
16) <DataObjStr:: :py:method:`agen.athrow`> with module 'builtins' has no attribute 'agen'
17) <DataObjStr:: :py:method:`aifc.aifc.aifc`> with module 'aifc' has no attribute 'aifc'
18) <DataObjStr:: :py:method:`aifc.aifc.aiff`> with module 'aifc' has no attribute 'aifc'
19) <DataObjStr:: :py:method:`aifc.aifc.close`> with module 'aifc' has no attribute 'aifc'
20) <DataObjStr:: :py:method:`aifc.aifc.getcompname`> with module 'aifc' has no attribute 'aifc'
21) <DataObjStr:: :py:method:`aifc.aifc.getcomptype`> with module 'aifc' has no attribute 'aifc'
22) <DataObjStr:: :py:method:`aifc.aifc.getframerate`> with module 'aifc' has no attribute 'aifc'
23) <DataObjStr:: :py:method:`aifc.aifc.getmark`> with module 'aifc' has no attribute 'aifc'
24) <DataObjStr:: :py:method:`aifc.aifc.getmarkers`> with module 'aifc' has no attribute 'aifc'
25) <DataObjStr:: :py:method:`aifc.aifc.getnchannels`> with module 'aifc' has no attribute 'aifc'
26) <DataObjStr:: :py:method:`aifc.aifc.getnframes`> with module 'aifc' has no attribute 'aifc'
27) <DataObjStr:: :py:method:`aifc.aifc.getparams`> with module 'aifc' has no attribute 'aifc'
28) <DataObjStr:: :py:method:`aifc.aifc.getsampwidth`> with module 'aifc' has no attribute 'aifc'
29) <DataObjStr:: :py:method:`aifc.aifc.readframes`> with module 'aifc' has no attribute 'aifc'
30) <DataObjStr:: :py:method:`aifc.aifc.rewind`> with module 'aifc' has no attribute 'aifc'
31) <DataObjStr:: :py:method:`aifc.aifc.setcomptype`> with module 'aifc' has no attribute 'aifc'
32) <DataObjStr:: :py:method:`aifc.aifc.setframerate`> with module 'aifc' has no attribute 'aifc'
33) <DataObjStr:: :py:method:`aifc.aifc.setmark`> with module 'aifc' has no attribute 'aifc'
34) <DataObjStr:: :py:method:`aifc.aifc.setnchannels`> with module 'aifc' has no attribute 'aifc'
35) <DataObjStr:: :py:method:`aifc.aifc.setnframes`> with module 'aifc' has no attribute 'aifc'
36) <DataObjStr:: :py:method:`aifc.aifc.setparams`> with module 'aifc' has no attribute 'aifc'
37) <DataObjStr:: :py:method:`aifc.aifc.setpos`> with module 'aifc' has no attribute 'aifc'
38) <DataObjStr:: :py:method:`aifc.aifc.setsampwidth`> with module 'aifc' has no attribute 'aifc'
39) <DataObjStr:: :py:method:`aifc.aifc.tell`> with module 'aifc' has no attribute 'aifc'
40) <DataObjStr:: :py:method:`aifc.aifc.writeframes`> with module 'aifc' has no attribute 'aifc'
41) <DataObjStr:: :py:method:`aifc.aifc.writeframesraw`> with module 'aifc' has no attribute 'aifc'
42) <DataObjStr:: :py:attribute:`ast.AST.col_offset`> with type object 'ast.AST' has no attribute 'col_offset'
43) <DataObjStr:: :py:attribute:`ast.AST.end_col_offset`> with type object 'ast.AST' has no attribute 'end_col_offset'
44) <DataObjStr:: :py:attribute:`ast.AST.end_lineno`> with type object 'ast.AST' has no attribute 'end_lineno'
45) <DataObjStr:: :py:attribute:`ast.AST.lineno`> with type object 'ast.AST' has no attribute 'lineno'
46) <DataObjStr:: :py:data:`asynchat.async_chat.ac_in_buffer_size`> with module 'asynchat' has no attribute 'async_chat.ac_in_buffer_size'
47) <DataObjStr:: :py:data:`asynchat.async_chat.ac_out_buffer_size`> with module 'asynchat' has no attribute 'async_chat.ac_out_buffer_size'
48) <DataObjStr:: :py:method:`asyncio.Condition.acquire`> with type object 'Condition' has no attribute 'acquire'
49) <DataObjStr:: :py:method:`asyncio.Condition.locked`> with type object 'Condition' has no attribute 'locked'
50) <DataObjStr:: :py:method:`asyncio.Condition.release`> with type object 'Condition' has no attribute 'release'
51) <DataObjStr:: :py:attribute:`asyncio.IncompleteReadError.expected`> with type object 'IncompleteReadError' has no attribute 'expected'
52) <DataObjStr:: :py:attribute:`asyncio.IncompleteReadError.partial`> with type object 'IncompleteReadError' has no attribute 'partial'
53) <DataObjStr:: :py:attribute:`asyncio.LimitOverrunError.consumed`> with type object 'LimitOverrunError' has no attribute 'consumed'
54) <DataObjStr:: :py:class:`asyncio.ProactorEventLoop`> with module 'asyncio' has no attribute 'ProactorEventLoop'
55) <DataObjStr:: :py:class:`asyncio.Server`> with module 'asyncio' has no attribute 'Server'
56) <DataObjStr:: :py:method:`asyncio.Server.close`> with module 'asyncio' has no attribute 'Server'
57) <DataObjStr:: :py:method:`asyncio.Server.get_loop`> with module 'asyncio' has no attribute 'Server'
58) <DataObjStr:: :py:method:`asyncio.Server.is_serving`> with module 'asyncio' has no attribute 'Server'
59) <DataObjStr:: :py:method:`asyncio.Server.serve_forever`> with module 'asyncio' has no attribute 'Server'
60) <DataObjStr:: :py:attribute:`asyncio.Server.sockets`> with module 'asyncio' has no attribute 'Server'
61) <DataObjStr:: :py:method:`asyncio.Server.start_serving`> with module 'asyncio' has no attribute 'Server'
62) <DataObjStr:: :py:method:`asyncio.Server.wait_closed`> with module 'asyncio' has no attribute 'Server'
63) <DataObjStr:: :py:class:`asyncio.WindowsProactorEventLoopPolicy`> with module 'asyncio' has no attribute 'WindowsProactorEventLoopPolicy'
64) <DataObjStr:: :py:class:`asyncio.WindowsSelectorEventLoopPolicy`> with module 'asyncio' has no attribute 'WindowsSelectorEventLoopPolicy'
65) <DataObjStr:: :py:method:`asyncio.WriteTransport.get_write_buffer_limits`> with type object 'WriteTransport' has no attribute 'get_write_buffer_limits'
66) <DataObjStr:: :py:data:`asyncio.asyncio.subprocess.DEVNULL`> with module 'asyncio' has no attribute 'asyncio.subprocess.DEVNULL'
67) <DataObjStr:: :py:data:`asyncio.asyncio.subprocess.PIPE`> with module 'asyncio' has no attribute 'asyncio.subprocess.PIPE'
68) <DataObjStr:: :py:class:`asyncio.asyncio.subprocess.Process`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
69) <DataObjStr:: :py:method:`asyncio.asyncio.subprocess.Process.communicate`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
70) <DataObjStr:: :py:method:`asyncio.asyncio.subprocess.Process.kill`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
71) <DataObjStr:: :py:attribute:`asyncio.asyncio.subprocess.Process.pid`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
72) <DataObjStr:: :py:attribute:`asyncio.asyncio.subprocess.Process.returncode`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
73) <DataObjStr:: :py:method:`asyncio.asyncio.subprocess.Process.send_signal`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
74) <DataObjStr:: :py:attribute:`asyncio.asyncio.subprocess.Process.stderr`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
75) <DataObjStr:: :py:attribute:`asyncio.asyncio.subprocess.Process.stdin`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
76) <DataObjStr:: :py:attribute:`asyncio.asyncio.subprocess.Process.stdout`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
77) <DataObjStr:: :py:method:`asyncio.asyncio.subprocess.Process.terminate`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
78) <DataObjStr:: :py:method:`asyncio.asyncio.subprocess.Process.wait`> with module 'asyncio' has no attribute 'asyncio.subprocess.Process'
79) <DataObjStr:: :py:data:`asyncio.asyncio.subprocess.STDOUT`> with module 'asyncio' has no attribute 'asyncio.subprocess.STDOUT'
80) <DataObjStr:: :py:method:`asyncio.loop.add_reader`> with module 'asyncio' has no attribute 'loop'
81) <DataObjStr:: :py:method:`asyncio.loop.add_signal_handler`> with module 'asyncio' has no attribute 'loop'
82) <DataObjStr:: :py:method:`asyncio.loop.add_writer`> with module 'asyncio' has no attribute 'loop'
83) <DataObjStr:: :py:method:`asyncio.loop.call_at`> with module 'asyncio' has no attribute 'loop'
84) <DataObjStr:: :py:method:`asyncio.loop.call_exception_handler`> with module 'asyncio' has no attribute 'loop'
85) <DataObjStr:: :py:method:`asyncio.loop.call_later`> with module 'asyncio' has no attribute 'loop'
86) <DataObjStr:: :py:method:`asyncio.loop.call_soon`> with module 'asyncio' has no attribute 'loop'
87) <DataObjStr:: :py:method:`asyncio.loop.call_soon_threadsafe`> with module 'asyncio' has no attribute 'loop'
88) <DataObjStr:: :py:method:`asyncio.loop.close`> with module 'asyncio' has no attribute 'loop'
89) <DataObjStr:: :py:method:`asyncio.loop.connect_accepted_socket`> with module 'asyncio' has no attribute 'loop'
90) <DataObjStr:: :py:method:`asyncio.loop.connect_read_pipe`> with module 'asyncio' has no attribute 'loop'
91) <DataObjStr:: :py:method:`asyncio.loop.connect_write_pipe`> with module 'asyncio' has no attribute 'loop'
92) <DataObjStr:: :py:method:`asyncio.loop.create_connection`> with module 'asyncio' has no attribute 'loop'
93) <DataObjStr:: :py:method:`asyncio.loop.create_datagram_endpoint`> with module 'asyncio' has no attribute 'loop'
94) <DataObjStr:: :py:method:`asyncio.loop.create_future`> with module 'asyncio' has no attribute 'loop'
95) <DataObjStr:: :py:method:`asyncio.loop.create_server`> with module 'asyncio' has no attribute 'loop'
96) <DataObjStr:: :py:method:`asyncio.loop.create_task`> with module 'asyncio' has no attribute 'loop'
97) <DataObjStr:: :py:method:`asyncio.loop.create_unix_connection`> with module 'asyncio' has no attribute 'loop'
98) <DataObjStr:: :py:method:`asyncio.loop.create_unix_server`> with module 'asyncio' has no attribute 'loop'
99) <DataObjStr:: :py:method:`asyncio.loop.default_exception_handler`> with module 'asyncio' has no attribute 'loop'
100) <DataObjStr:: :py:method:`asyncio.loop.get_debug`> with module 'asyncio' has no attribute 'loop'
101) <DataObjStr:: :py:method:`asyncio.loop.get_exception_handler`> with module 'asyncio' has no attribute 'loop'
102) <DataObjStr:: :py:method:`asyncio.loop.get_task_factory`> with module 'asyncio' has no attribute 'loop'
103) <DataObjStr:: :py:method:`asyncio.loop.getaddrinfo`> with module 'asyncio' has no attribute 'loop'
104) <DataObjStr:: :py:method:`asyncio.loop.getnameinfo`> with module 'asyncio' has no attribute 'loop'
105) <DataObjStr:: :py:method:`asyncio.loop.is_closed`> with module 'asyncio' has no attribute 'loop'
106) <DataObjStr:: :py:method:`asyncio.loop.is_running`> with module 'asyncio' has no attribute 'loop'
107) <DataObjStr:: :py:method:`asyncio.loop.remove_reader`> with module 'asyncio' has no attribute 'loop'
108) <DataObjStr:: :py:method:`asyncio.loop.remove_signal_handler`> with module 'asyncio' has no attribute 'loop'
109) <DataObjStr:: :py:method:`asyncio.loop.remove_writer`> with module 'asyncio' has no attribute 'loop'
110) <DataObjStr:: :py:method:`asyncio.loop.run_forever`> with module 'asyncio' has no attribute 'loop'
111) <DataObjStr:: :py:method:`asyncio.loop.run_in_executor`> with module 'asyncio' has no attribute 'loop'
112) <DataObjStr:: :py:method:`asyncio.loop.run_until_complete`> with module 'asyncio' has no attribute 'loop'
113) <DataObjStr:: :py:method:`asyncio.loop.sendfile`> with module 'asyncio' has no attribute 'loop'
114) <DataObjStr:: :py:method:`asyncio.loop.set_debug`> with module 'asyncio' has no attribute 'loop'
115) <DataObjStr:: :py:method:`asyncio.loop.set_default_executor`> with module 'asyncio' has no attribute 'loop'
116) <DataObjStr:: :py:method:`asyncio.loop.set_exception_handler`> with module 'asyncio' has no attribute 'loop'
117) <DataObjStr:: :py:method:`asyncio.loop.set_task_factory`> with module 'asyncio' has no attribute 'loop'
118) <DataObjStr:: :py:method:`asyncio.loop.shutdown_asyncgens`> with module 'asyncio' has no attribute 'loop'
119) <DataObjStr:: :py:method:`asyncio.loop.shutdown_default_executor`> with module 'asyncio' has no attribute 'loop'
120) <DataObjStr:: :py:method:`asyncio.loop.sock_accept`> with module 'asyncio' has no attribute 'loop'
121) <DataObjStr:: :py:method:`asyncio.loop.sock_connect`> with module 'asyncio' has no attribute 'loop'
122) <DataObjStr:: :py:method:`asyncio.loop.sock_recv`> with module 'asyncio' has no attribute 'loop'
123) <DataObjStr:: :py:method:`asyncio.loop.sock_recv_into`> with module 'asyncio' has no attribute 'loop'
124) <DataObjStr:: :py:method:`asyncio.loop.sock_sendall`> with module 'asyncio' has no attribute 'loop'
125) <DataObjStr:: :py:method:`asyncio.loop.sock_sendfile`> with module 'asyncio' has no attribute 'loop'
126) <DataObjStr:: :py:method:`asyncio.loop.start_tls`> with module 'asyncio' has no attribute 'loop'
127) <DataObjStr:: :py:method:`asyncio.loop.stop`> with module 'asyncio' has no attribute 'loop'
128) <DataObjStr:: :py:method:`asyncio.loop.subprocess_exec`> with module 'asyncio' has no attribute 'loop'
129) <DataObjStr:: :py:method:`asyncio.loop.subprocess_shell`> with module 'asyncio' has no attribute 'loop'
130) <DataObjStr:: :py:method:`asyncio.loop.time`> with module 'asyncio' has no attribute 'loop'
131) <DataObjStr:: :py:attribute:`class.__bases__`> with module 'builtins' has no attribute 'class'
132) <DataObjStr:: :py:method:`class.__instancecheck__`> with module 'builtins' has no attribute 'class'
133) <DataObjStr:: :py:attribute:`class.__mro__`> with module 'builtins' has no attribute 'class'
134) <DataObjStr:: :py:method:`class.__subclasscheck__`> with module 'builtins' has no attribute 'class'
135) <DataObjStr:: :py:method:`class.__subclasses__`> with module 'builtins' has no attribute 'class'
136) <DataObjStr:: :py:method:`class.mro`> with module 'builtins' has no attribute 'class'
137) <DataObjStr:: :py:attribute:`cmd.Cmd.cmdqueue`> with type object 'Cmd' has no attribute 'cmdqueue'
138) <DataObjStr:: :py:attribute:`codecs.CodecInfo.decode`> with type object 'CodecInfo' has no attribute 'decode'
139) <DataObjStr:: :py:attribute:`codecs.CodecInfo.encode`> with type object 'CodecInfo' has no attribute 'encode'
140) <DataObjStr:: :py:attribute:`codecs.CodecInfo.incrementaldecoder`> with type object 'CodecInfo' has no attribute 'incrementaldecoder'
141) <DataObjStr:: :py:attribute:`codecs.CodecInfo.incrementalencoder`> with type object 'CodecInfo' has no attribute 'incrementalencoder'
142) <DataObjStr:: :py:attribute:`codecs.CodecInfo.name`> with type object 'CodecInfo' has no attribute 'name'
143) <DataObjStr:: :py:attribute:`codecs.CodecInfo.streamreader`> with type object 'CodecInfo' has no attribute 'streamreader'
144) <DataObjStr:: :py:attribute:`codecs.CodecInfo.streamwriter`> with type object 'CodecInfo' has no attribute 'streamwriter'
145) <DataObjStr:: :py:attribute:`collections.ChainMap.maps`> with type object 'ChainMap' has no attribute 'maps'
146) <DataObjStr:: :py:attribute:`collections.UserDict.data`> with type object 'UserDict' has no attribute 'data'
147) <DataObjStr:: :py:attribute:`collections.UserList.data`> with type object 'UserList' has no attribute 'data'
148) <DataObjStr:: :py:attribute:`collections.UserString.data`> with type object 'UserString' has no attribute 'data'
149) <DataObjStr:: :py:class:`collections.abc.AsyncGenerator`> with module 'collections' has no attribute 'abc.AsyncGenerator'
150) <DataObjStr:: :py:class:`collections.abc.AsyncIterable`> with module 'collections' has no attribute 'abc.AsyncIterable'
151) <DataObjStr:: :py:class:`collections.abc.AsyncIterator`> with module 'collections' has no attribute 'abc.AsyncIterator'
152) <DataObjStr:: :py:class:`collections.abc.Awaitable`> with module 'collections' has no attribute 'abc.Awaitable'
153) <DataObjStr:: :py:class:`collections.abc.ByteString`> with module 'collections' has no attribute 'abc.ByteString'
154) <DataObjStr:: :py:class:`collections.abc.Callable`> with module 'collections' has no attribute 'abc.Callable'
155) <DataObjStr:: :py:class:`collections.abc.Collection`> with module 'collections' has no attribute 'abc.Collection'
156) <DataObjStr:: :py:class:`collections.abc.Container`> with module 'collections' has no attribute 'abc.Container'
157) <DataObjStr:: :py:class:`collections.abc.Coroutine`> with module 'collections' has no attribute 'abc.Coroutine'
158) <DataObjStr:: :py:class:`collections.abc.Generator`> with module 'collections' has no attribute 'abc.Generator'
159) <DataObjStr:: :py:class:`collections.abc.Hashable`> with module 'collections' has no attribute 'abc.Hashable'
160) <DataObjStr:: :py:class:`collections.abc.ItemsView`> with module 'collections' has no attribute 'abc.ItemsView'
161) <DataObjStr:: :py:class:`collections.abc.Iterable`> with module 'collections' has no attribute 'abc.Iterable'
162) <DataObjStr:: :py:class:`collections.abc.Iterator`> with module 'collections' has no attribute 'abc.Iterator'
163) <DataObjStr:: :py:class:`collections.abc.KeysView`> with module 'collections' has no attribute 'abc.KeysView'
164) <DataObjStr:: :py:class:`collections.abc.Mapping`> with module 'collections' has no attribute 'abc.Mapping'
165) <DataObjStr:: :py:class:`collections.abc.MappingView`> with module 'collections' has no attribute 'abc.MappingView'
166) <DataObjStr:: :py:class:`collections.abc.MutableMapping`> with module 'collections' has no attribute 'abc.MutableMapping'
167) <DataObjStr:: :py:class:`collections.abc.MutableSequence`> with module 'collections' has no attribute 'abc.MutableSequence'
168) <DataObjStr:: :py:class:`collections.abc.MutableSet`> with module 'collections' has no attribute 'abc.MutableSet'
169) <DataObjStr:: :py:class:`collections.abc.Reversible`> with module 'collections' has no attribute 'abc.Reversible'
170) <DataObjStr:: :py:class:`collections.abc.Sequence`> with module 'collections' has no attribute 'abc.Sequence'
171) <DataObjStr:: :py:class:`collections.abc.Set`> with module 'collections' has no attribute 'abc.Set'
172) <DataObjStr:: :py:class:`collections.abc.Sized`> with module 'collections' has no attribute 'abc.Sized'
173) <DataObjStr:: :py:class:`collections.abc.ValuesView`> with module 'collections' has no attribute 'abc.ValuesView'
174) <DataObjStr:: :py:method:`collections.somenamedtuple._asdict`> with module 'collections' has no attribute 'somenamedtuple'
175) <DataObjStr:: :py:attribute:`collections.somenamedtuple._field_defaults`> with module 'collections' has no attribute 'somenamedtuple'
176) <DataObjStr:: :py:attribute:`collections.somenamedtuple._fields`> with module 'collections' has no attribute 'somenamedtuple'
177) <DataObjStr:: :py:method:`collections.somenamedtuple._make`> with module 'collections' has no attribute 'somenamedtuple'
178) <DataObjStr:: :py:method:`collections.somenamedtuple._replace`> with module 'collections' has no attribute 'somenamedtuple'
179) <DataObjStr:: :py:exception:`concurrent.futures.BrokenExecutor`> with module 'concurrent' has no attribute 'futures.BrokenExecutor'
180) <DataObjStr:: :py:exception:`concurrent.futures.CancelledError`> with module 'concurrent' has no attribute 'futures.CancelledError'
181) <DataObjStr:: :py:class:`concurrent.futures.Executor`> with module 'concurrent' has no attribute 'futures.Executor'
182) <DataObjStr:: :py:method:`concurrent.futures.Executor.map`> with module 'concurrent' has no attribute 'futures.Executor'
183) <DataObjStr:: :py:method:`concurrent.futures.Executor.shutdown`> with module 'concurrent' has no attribute 'futures.Executor'
184) <DataObjStr:: :py:method:`concurrent.futures.Executor.submit`> with module 'concurrent' has no attribute 'futures.Executor'
185) <DataObjStr:: :py:class:`concurrent.futures.Future`> with module 'concurrent' has no attribute 'futures.Future'
186) <DataObjStr:: :py:method:`concurrent.futures.Future.add_done_callback`> with module 'concurrent' has no attribute 'futures.Future'
187) <DataObjStr:: :py:method:`concurrent.futures.Future.cancel`> with module 'concurrent' has no attribute 'futures.Future'
188) <DataObjStr:: :py:method:`concurrent.futures.Future.cancelled`> with module 'concurrent' has no attribute 'futures.Future'
189) <DataObjStr:: :py:method:`concurrent.futures.Future.done`> with module 'concurrent' has no attribute 'futures.Future'
190) <DataObjStr:: :py:method:`concurrent.futures.Future.exception`> with module 'concurrent' has no attribute 'futures.Future'
191) <DataObjStr:: :py:method:`concurrent.futures.Future.result`> with module 'concurrent' has no attribute 'futures.Future'
192) <DataObjStr:: :py:method:`concurrent.futures.Future.running`> with module 'concurrent' has no attribute 'futures.Future'
193) <DataObjStr:: :py:method:`concurrent.futures.Future.set_exception`> with module 'concurrent' has no attribute 'futures.Future'
194) <DataObjStr:: :py:method:`concurrent.futures.Future.set_result`> with module 'concurrent' has no attribute 'futures.Future'
195) <DataObjStr:: :py:method:`concurrent.futures.Future.set_running_or_notify_cancel`> with module 'concurrent' has no attribute 'futures.Future'
196) <DataObjStr:: :py:exception:`concurrent.futures.InvalidStateError`> with module 'concurrent' has no attribute 'futures.InvalidStateError'
197) <DataObjStr:: :py:class:`concurrent.futures.ProcessPoolExecutor`> with module 'concurrent' has no attribute 'futures.ProcessPoolExecutor'
198) <DataObjStr:: :py:class:`concurrent.futures.ThreadPoolExecutor`> with module 'concurrent' has no attribute 'futures.ThreadPoolExecutor'
199) <DataObjStr:: :py:exception:`concurrent.futures.TimeoutError`> with module 'concurrent' has no attribute 'futures.TimeoutError'
200) <DataObjStr:: :py:function:`concurrent.futures.as_completed`> with module 'concurrent' has no attribute 'futures.as_completed'
201) <DataObjStr:: :py:exception:`concurrent.futures.process.BrokenProcessPool`> with module 'concurrent' has no attribute 'futures.process.BrokenProcessPool'
202) <DataObjStr:: :py:exception:`concurrent.futures.thread.BrokenThreadPool`> with module 'concurrent' has no attribute 'futures.thread.BrokenThreadPool'
203) <DataObjStr:: :py:function:`concurrent.futures.wait`> with module 'concurrent' has no attribute 'futures.wait'
204) <DataObjStr:: :py:method:`container.__iter__`> with module 'builtins' has no attribute 'container'
205) <DataObjStr:: :py:method:`contextmanager.__enter__`> with module 'builtins' has no attribute 'contextmanager'
206) <DataObjStr:: :py:method:`contextmanager.__exit__`> with module 'builtins' has no attribute 'contextmanager'
207) <DataObjStr:: :py:class:`contextvars.contextvars.Token`> with module 'contextvars' has no attribute 'contextvars.Token'
208) <DataObjStr:: :py:attribute:`contextvars.contextvars.Token.Token.MISSING`> with module 'contextvars' has no attribute 'contextvars.Token.Token'
209) <DataObjStr:: :py:attribute:`contextvars.contextvars.Token.Token.old_value`> with module 'contextvars' has no attribute 'contextvars.Token.Token'
210) <DataObjStr:: :py:attribute:`contextvars.contextvars.Token.Token.var`> with module 'contextvars' has no attribute 'contextvars.Token.Token'
211) <DataObjStr:: :py:method:`coroutine.close`> with module 'builtins' has no attribute 'coroutine'
212) <DataObjStr:: :py:method:`coroutine.send`> with module 'builtins' has no attribute 'coroutine'
213) <DataObjStr:: :py:method:`coroutine.throw`> with module 'builtins' has no attribute 'coroutine'
214) <DataObjStr:: :py:function:`create_shortcut`> with module 'builtins' has no attribute 'create_shortcut'
215) <DataObjStr:: :py:attribute:`crypt.methods`> with module 'builtins' has no attribute 'crypt'
216) <DataObjStr:: :py:attribute:`csv.Dialect.strict`> with type object 'Dialect' has no attribute 'strict'
217) <DataObjStr:: :py:method:`csv.csvreader.__next__`> with module 'csv' has no attribute 'csvreader'
218) <DataObjStr:: :py:attribute:`csv.csvreader.dialect`> with module 'csv' has no attribute 'csvreader'
219) <DataObjStr:: :py:attribute:`csv.csvreader.fieldnames`> with module 'csv' has no attribute 'csvreader'
220) <DataObjStr:: :py:attribute:`csv.csvreader.line_num`> with module 'csv' has no attribute 'csvreader'
221) <DataObjStr:: :py:attribute:`csv.csvwriter.dialect`> with module 'csv' has no attribute 'csvwriter'
222) <DataObjStr:: :py:method:`csv.csvwriter.writerow`> with module 'csv' has no attribute 'csvwriter'
223) <DataObjStr:: :py:method:`csv.csvwriter.writerows`> with module 'csv' has no attribute 'csvwriter'
224) <DataObjStr:: :py:attribute:`ctypes.Array._length_`> with type object '_ctypes.Array' has no attribute '_length_'
225) <DataObjStr:: :py:attribute:`ctypes.Array._type_`> with type object '_ctypes.Array' has no attribute '_type_'
226) <DataObjStr:: :py:function:`ctypes.DllCanUnloadNow`> with module 'ctypes' has no attribute 'DllCanUnloadNow'
227) <DataObjStr:: :py:function:`ctypes.DllGetClassObject`> with module 'ctypes' has no attribute 'DllGetClassObject'
228) <DataObjStr:: :py:function:`ctypes.FormatError`> with module 'ctypes' has no attribute 'FormatError'
229) <DataObjStr:: :py:function:`ctypes.GetLastError`> with module 'ctypes' has no attribute 'GetLastError'
230) <DataObjStr:: :py:class:`ctypes.HRESULT`> with module 'ctypes' has no attribute 'HRESULT'
231) <DataObjStr:: :py:class:`ctypes.OleDLL`> with module 'ctypes' has no attribute 'OleDLL'
232) <DataObjStr:: :py:attribute:`ctypes.Structure._anonymous_`> with type object '_ctypes.Structure' has no attribute '_anonymous_'
233) <DataObjStr:: :py:attribute:`ctypes.Structure._fields_`> with type object '_ctypes.Structure' has no attribute '_fields_'
234) <DataObjStr:: :py:attribute:`ctypes.Structure._pack_`> with type object '_ctypes.Structure' has no attribute '_pack_'
235) <DataObjStr:: :py:function:`ctypes.WINFUNCTYPE`> with module 'ctypes' has no attribute 'WINFUNCTYPE'
236) <DataObjStr:: :py:class:`ctypes.WinDLL`> with module 'ctypes' has no attribute 'WinDLL'
237) <DataObjStr:: :py:function:`ctypes.WinError`> with module 'ctypes' has no attribute 'WinError'
238) <DataObjStr:: :py:class:`ctypes._CData`> with module 'ctypes' has no attribute '_CData'
239) <DataObjStr:: :py:attribute:`ctypes._CData._b_base_`> with module 'ctypes' has no attribute '_CData'
240) <DataObjStr:: :py:attribute:`ctypes._CData._b_needsfree_`> with module 'ctypes' has no attribute '_CData'
241) <DataObjStr:: :py:attribute:`ctypes._CData._objects`> with module 'ctypes' has no attribute '_CData'
242) <DataObjStr:: :py:method:`ctypes._CData.from_address`> with module 'ctypes' has no attribute '_CData'
243) <DataObjStr:: :py:method:`ctypes._CData.from_buffer`> with module 'ctypes' has no attribute '_CData'
244) <DataObjStr:: :py:method:`ctypes._CData.from_buffer_copy`> with module 'ctypes' has no attribute '_CData'
245) <DataObjStr:: :py:method:`ctypes._CData.from_param`> with module 'ctypes' has no attribute '_CData'
246) <DataObjStr:: :py:method:`ctypes._CData.in_dll`> with module 'ctypes' has no attribute '_CData'
247) <DataObjStr:: :py:class:`ctypes._FuncPtr`> with module 'ctypes' has no attribute '_FuncPtr'
248) <DataObjStr:: :py:attribute:`ctypes._FuncPtr.argtypes`> with module 'ctypes' has no attribute '_FuncPtr'
249) <DataObjStr:: :py:attribute:`ctypes._FuncPtr.errcheck`> with module 'ctypes' has no attribute '_FuncPtr'
250) <DataObjStr:: :py:attribute:`ctypes._FuncPtr.restype`> with module 'ctypes' has no attribute '_FuncPtr'
251) <DataObjStr:: :py:attribute:`ctypes._Pointer._type_`> with type object '_ctypes._Pointer' has no attribute '_type_'
252) <DataObjStr:: :py:function:`ctypes.get_last_error`> with module 'ctypes' has no attribute 'get_last_error'
253) <DataObjStr:: :py:function:`ctypes.set_last_error`> with module 'ctypes' has no attribute 'set_last_error'
254) <DataObjStr:: :py:function:`ctypes.util.find_library`> with module 'ctypes' has no attribute 'util.find_library'
255) <DataObjStr:: :py:function:`ctypes.util.find_msvcrt`> with module 'ctypes' has no attribute 'util.find_msvcrt'
256) <DataObjStr:: :py:function:`curses.ascii.alt`> with module 'curses' has no attribute 'ascii.alt'
257) <DataObjStr:: :py:function:`curses.ascii.ascii`> with module 'curses' has no attribute 'ascii.ascii'
258) <DataObjStr:: :py:data:`curses.ascii.controlnames`> with module 'curses' has no attribute 'ascii.controlnames'
259) <DataObjStr:: :py:function:`curses.ascii.ctrl`> with module 'curses' has no attribute 'ascii.ctrl'
260) <DataObjStr:: :py:function:`curses.ascii.isalnum`> with module 'curses' has no attribute 'ascii.isalnum'
261) <DataObjStr:: :py:function:`curses.ascii.isalpha`> with module 'curses' has no attribute 'ascii.isalpha'
262) <DataObjStr:: :py:function:`curses.ascii.isascii`> with module 'curses' has no attribute 'ascii.isascii'
263) <DataObjStr:: :py:function:`curses.ascii.isblank`> with module 'curses' has no attribute 'ascii.isblank'
264) <DataObjStr:: :py:function:`curses.ascii.iscntrl`> with module 'curses' has no attribute 'ascii.iscntrl'
265) <DataObjStr:: :py:function:`curses.ascii.isctrl`> with module 'curses' has no attribute 'ascii.isctrl'
266) <DataObjStr:: :py:function:`curses.ascii.isdigit`> with module 'curses' has no attribute 'ascii.isdigit'
267) <DataObjStr:: :py:function:`curses.ascii.isgraph`> with module 'curses' has no attribute 'ascii.isgraph'
268) <DataObjStr:: :py:function:`curses.ascii.islower`> with module 'curses' has no attribute 'ascii.islower'
269) <DataObjStr:: :py:function:`curses.ascii.ismeta`> with module 'curses' has no attribute 'ascii.ismeta'
270) <DataObjStr:: :py:function:`curses.ascii.isprint`> with module 'curses' has no attribute 'ascii.isprint'
271) <DataObjStr:: :py:function:`curses.ascii.ispunct`> with module 'curses' has no attribute 'ascii.ispunct'
272) <DataObjStr:: :py:function:`curses.ascii.isspace`> with module 'curses' has no attribute 'ascii.isspace'
273) <DataObjStr:: :py:function:`curses.ascii.isupper`> with module 'curses' has no attribute 'ascii.isupper'
274) <DataObjStr:: :py:function:`curses.ascii.isxdigit`> with module 'curses' has no attribute 'ascii.isxdigit'
275) <DataObjStr:: :py:function:`curses.ascii.unctrl`> with module 'curses' has no attribute 'ascii.unctrl'
276) <DataObjStr:: :py:method:`curses.panel.Panel.above`> with module 'curses' has no attribute 'panel.Panel'
277) <DataObjStr:: :py:method:`curses.panel.Panel.below`> with module 'curses' has no attribute 'panel.Panel'
278) <DataObjStr:: :py:method:`curses.panel.Panel.bottom`> with module 'curses' has no attribute 'panel.Panel'
279) <DataObjStr:: :py:method:`curses.panel.Panel.hidden`> with module 'curses' has no attribute 'panel.Panel'
280) <DataObjStr:: :py:method:`curses.panel.Panel.hide`> with module 'curses' has no attribute 'panel.Panel'
281) <DataObjStr:: :py:method:`curses.panel.Panel.move`> with module 'curses' has no attribute 'panel.Panel'
282) <DataObjStr:: :py:method:`curses.panel.Panel.replace`> with module 'curses' has no attribute 'panel.Panel'
283) <DataObjStr:: :py:method:`curses.panel.Panel.set_userptr`> with module 'curses' has no attribute 'panel.Panel'
284) <DataObjStr:: :py:method:`curses.panel.Panel.show`> with module 'curses' has no attribute 'panel.Panel'
285) <DataObjStr:: :py:method:`curses.panel.Panel.top`> with module 'curses' has no attribute 'panel.Panel'
286) <DataObjStr:: :py:method:`curses.panel.Panel.userptr`> with module 'curses' has no attribute 'panel.Panel'
287) <DataObjStr:: :py:method:`curses.panel.Panel.window`> with module 'curses' has no attribute 'panel.Panel'
288) <DataObjStr:: :py:function:`curses.panel.bottom_panel`> with module 'curses' has no attribute 'panel.bottom_panel'
289) <DataObjStr:: :py:function:`curses.panel.new_panel`> with module 'curses' has no attribute 'panel.new_panel'
290) <DataObjStr:: :py:function:`curses.panel.top_panel`> with module 'curses' has no attribute 'panel.top_panel'
291) <DataObjStr:: :py:function:`curses.panel.update_panels`> with module 'curses' has no attribute 'panel.update_panels'
292) <DataObjStr:: :py:class:`curses.textpad.Textbox`> with module 'curses' has no attribute 'textpad.Textbox'
293) <DataObjStr:: :py:method:`curses.textpad.Textbox.do_command`> with module 'curses' has no attribute 'textpad.Textbox'
294) <DataObjStr:: :py:method:`curses.textpad.Textbox.edit`> with module 'curses' has no attribute 'textpad.Textbox'
295) <DataObjStr:: :py:method:`curses.textpad.Textbox.gather`> with module 'curses' has no attribute 'textpad.Textbox'
296) <DataObjStr:: :py:attribute:`curses.textpad.Textbox.stripspaces`> with module 'curses' has no attribute 'textpad.Textbox'
297) <DataObjStr:: :py:function:`curses.textpad.rectangle`> with module 'curses' has no attribute 'textpad.rectangle'
298) <DataObjStr:: :py:method:`dbm.dumb.dumbdbm.close`> with module 'dbm' has no attribute 'dumb.dumbdbm'
299) <DataObjStr:: :py:method:`dbm.dumb.dumbdbm.sync`> with module 'dbm' has no attribute 'dumb.dumbdbm'
300) <DataObjStr:: :py:exception:`dbm.dumb.error`> with module 'dbm' has no attribute 'dumb.error'
301) <DataObjStr:: :py:function:`dbm.dumb.open`> with module 'dbm' has no attribute 'dumb.open'
302) <DataObjStr:: :py:exception:`dbm.gnu.error`> with module 'dbm' has no attribute 'gnu.error'
303) <DataObjStr:: :py:method:`dbm.gnu.gdbm.close`> with module 'dbm' has no attribute 'gnu.gdbm'
304) <DataObjStr:: :py:method:`dbm.gnu.gdbm.firstkey`> with module 'dbm' has no attribute 'gnu.gdbm'
305) <DataObjStr:: :py:method:`dbm.gnu.gdbm.nextkey`> with module 'dbm' has no attribute 'gnu.gdbm'
306) <DataObjStr:: :py:method:`dbm.gnu.gdbm.reorganize`> with module 'dbm' has no attribute 'gnu.gdbm'
307) <DataObjStr:: :py:method:`dbm.gnu.gdbm.sync`> with module 'dbm' has no attribute 'gnu.gdbm'
308) <DataObjStr:: :py:function:`dbm.gnu.open`> with module 'dbm' has no attribute 'gnu.open'
309) <DataObjStr:: :py:exception:`dbm.ndbm.error`> with module 'dbm' has no attribute 'ndbm.error'
310) <DataObjStr:: :py:data:`dbm.ndbm.library`> with module 'dbm' has no attribute 'ndbm.library'
311) <DataObjStr:: :py:method:`dbm.ndbm.ndbm.close`> with module 'dbm' has no attribute 'ndbm.ndbm'
312) <DataObjStr:: :py:function:`dbm.ndbm.open`> with module 'dbm' has no attribute 'ndbm.open'
313) <DataObjStr:: :py:attribute:`definition.__name__`> with module 'builtins' has no attribute 'definition'
314) <DataObjStr:: :py:attribute:`definition.__qualname__`> with module 'builtins' has no attribute 'definition'
315) <DataObjStr:: :py:function:`directory_created`> with module 'builtins' has no attribute 'directory_created'
316) <DataObjStr:: :py:data:`dis.Bytecode.codeobj`> with module 'dis' has no attribute 'Bytecode.codeobj'
317) <DataObjStr:: :py:data:`dis.Bytecode.first_line`> with module 'dis' has no attribute 'Bytecode.first_line'
318) <DataObjStr:: :py:data:`dis.Instruction.arg`> with module 'dis' has no attribute 'Instruction.arg'
319) <DataObjStr:: :py:data:`dis.Instruction.argrepr`> with module 'dis' has no attribute 'Instruction.argrepr'
320) <DataObjStr:: :py:data:`dis.Instruction.argval`> with module 'dis' has no attribute 'Instruction.argval'
321) <DataObjStr:: :py:data:`dis.Instruction.is_jump_target`> with module 'dis' has no attribute 'Instruction.is_jump_target'
322) <DataObjStr:: :py:data:`dis.Instruction.offset`> with module 'dis' has no attribute 'Instruction.offset'
323) <DataObjStr:: :py:data:`dis.Instruction.opcode`> with module 'dis' has no attribute 'Instruction.opcode'
324) <DataObjStr:: :py:data:`dis.Instruction.opname`> with module 'dis' has no attribute 'Instruction.opname'
325) <DataObjStr:: :py:data:`dis.Instruction.starts_line`> with module 'dis' has no attribute 'Instruction.starts_line'
326) <DataObjStr:: :py:function:`distutils.archive_util.make_archive`> with module 'distutils' has no attribute 'archive_util.make_archive'
327) <DataObjStr:: :py:function:`distutils.archive_util.make_tarball`> with module 'distutils' has no attribute 'archive_util.make_tarball'
328) <DataObjStr:: :py:function:`distutils.archive_util.make_zipfile`> with module 'distutils' has no attribute 'archive_util.make_zipfile'
329) <DataObjStr:: :py:class:`distutils.ccompiler.CCompiler`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
330) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.add_include_dir`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
331) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.add_library`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
332) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.add_library_dir`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
333) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.add_link_object`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
334) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.add_runtime_library_dir`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
335) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.announce`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
336) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.compile`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
337) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.create_static_lib`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
338) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.debug_print`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
339) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.define_macro`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
340) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.detect_language`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
341) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.executable_filename`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
342) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.execute`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
343) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.find_library_file`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
344) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.has_function`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
345) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.library_dir_option`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
346) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.library_filename`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
347) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.library_option`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
348) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.link`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
349) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.link_executable`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
350) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.link_shared_lib`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
351) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.link_shared_object`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
352) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.mkpath`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
353) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.move_file`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
354) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.object_filenames`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
355) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.preprocess`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
356) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.runtime_library_dir_option`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
357) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.set_executables`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
358) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.set_include_dirs`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
359) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.set_libraries`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
360) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.set_library_dirs`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
361) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.set_link_objects`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
362) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.set_runtime_library_dirs`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
363) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.shared_object_filename`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
364) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.spawn`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
365) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.undefine_macro`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
366) <DataObjStr:: :py:method:`distutils.ccompiler.CCompiler.warn`> with module 'distutils' has no attribute 'ccompiler.CCompiler'
367) <DataObjStr:: :py:function:`distutils.ccompiler.gen_lib_options`> with module 'distutils' has no attribute 'ccompiler.gen_lib_options'
368) <DataObjStr:: :py:function:`distutils.ccompiler.gen_preprocess_options`> with module 'distutils' has no attribute 'ccompiler.gen_preprocess_options'
369) <DataObjStr:: :py:function:`distutils.ccompiler.get_default_compiler`> with module 'distutils' has no attribute 'ccompiler.get_default_compiler'
370) <DataObjStr:: :py:function:`distutils.ccompiler.new_compiler`> with module 'distutils' has no attribute 'ccompiler.new_compiler'
371) <DataObjStr:: :py:function:`distutils.ccompiler.show_compilers`> with module 'distutils' has no attribute 'ccompiler.show_compilers'
372) <DataObjStr:: :py:class:`distutils.cmd.Command`> with module 'distutils' has no attribute 'cmd.Command'
373) <DataObjStr:: :py:method:`distutils.cmd.Command.finalize_options`> with module 'distutils' has no attribute 'cmd.Command'
374) <DataObjStr:: :py:method:`distutils.cmd.Command.initialize_options`> with module 'distutils' has no attribute 'cmd.Command'
375) <DataObjStr:: :py:method:`distutils.cmd.Command.run`> with module 'distutils' has no attribute 'cmd.Command'
376) <DataObjStr:: :py:attribute:`distutils.cmd.Command.sub_commands`> with module 'distutils' has no attribute 'cmd.Command'
377) <DataObjStr:: :py:module:`distutils.command.bdist_msi`> with No module named 'msilib'
378) <DataObjStr:: :py:class:`distutils.command.bdist_msi.bdist_msi`> with module 'distutils' has no attribute 'command.bdist_msi.bdist_msi'
379) <DataObjStr:: :py:module:`distutils.command.bdist_packager`> with No module named 'distutils.command.bdist_packager'
380) <DataObjStr:: :py:class:`distutils.command.build_py.build_py`> with module 'distutils' has no attribute 'command.build_py.build_py'
381) <DataObjStr:: :py:class:`distutils.command.build_py.build_py_2to3`> with module 'distutils' has no attribute 'command.build_py.build_py_2to3'
382) <DataObjStr:: :py:class:`distutils.core.Command`> with module 'distutils' has no attribute 'core.Command'
383) <DataObjStr:: :py:class:`distutils.core.Distribution`> with module 'distutils' has no attribute 'core.Distribution'
384) <DataObjStr:: :py:class:`distutils.core.Extension`> with module 'distutils' has no attribute 'core.Extension'
385) <DataObjStr:: :py:function:`distutils.core.run_setup`> with module 'distutils' has no attribute 'core.run_setup'
386) <DataObjStr:: :py:function:`distutils.core.setup`> with module 'distutils' has no attribute 'core.setup'
387) <DataObjStr:: :py:function:`distutils.dep_util.newer`> with module 'distutils' has no attribute 'dep_util.newer'
388) <DataObjStr:: :py:function:`distutils.dep_util.newer_group`> with module 'distutils' has no attribute 'dep_util.newer_group'
389) <DataObjStr:: :py:function:`distutils.dep_util.newer_pairwise`> with module 'distutils' has no attribute 'dep_util.newer_pairwise'
390) <DataObjStr:: :py:function:`distutils.dir_util.copy_tree`> with module 'distutils' has no attribute 'dir_util.copy_tree'
391) <DataObjStr:: :py:function:`distutils.dir_util.create_tree`> with module 'distutils' has no attribute 'dir_util.create_tree'
392) <DataObjStr:: :py:function:`distutils.dir_util.mkpath`> with module 'distutils' has no attribute 'dir_util.mkpath'
393) <DataObjStr:: :py:function:`distutils.dir_util.remove_tree`> with module 'distutils' has no attribute 'dir_util.remove_tree'
394) <DataObjStr:: :py:class:`distutils.fancy_getopt.FancyGetopt`> with module 'distutils' has no attribute 'fancy_getopt.FancyGetopt'
395) <DataObjStr:: :py:method:`distutils.fancy_getopt.FancyGetopt.generate_help`> with module 'distutils' has no attribute 'fancy_getopt.FancyGetopt'
396) <DataObjStr:: :py:method:`distutils.fancy_getopt.FancyGetopt.get_option_order`> with module 'distutils' has no attribute 'fancy_getopt.FancyGetopt'
397) <DataObjStr:: :py:method:`distutils.fancy_getopt.FancyGetopt.getopt`> with module 'distutils' has no attribute 'fancy_getopt.FancyGetopt'
398) <DataObjStr:: :py:function:`distutils.fancy_getopt.fancy_getopt`> with module 'distutils' has no attribute 'fancy_getopt.fancy_getopt'
399) <DataObjStr:: :py:function:`distutils.fancy_getopt.wrap_text`> with module 'distutils' has no attribute 'fancy_getopt.wrap_text'
400) <DataObjStr:: :py:function:`distutils.file_util.copy_file`> with module 'distutils' has no attribute 'file_util.copy_file'
401) <DataObjStr:: :py:function:`distutils.file_util.move_file`> with module 'distutils' has no attribute 'file_util.move_file'
402) <DataObjStr:: :py:function:`distutils.file_util.write_file`> with module 'distutils' has no attribute 'file_util.write_file'
403) <DataObjStr:: :py:data:`distutils.sysconfig.EXEC_PREFIX`> with module 'distutils' has no attribute 'sysconfig.EXEC_PREFIX'
404) <DataObjStr:: :py:data:`distutils.sysconfig.PREFIX`> with module 'distutils' has no attribute 'sysconfig.PREFIX'
405) <DataObjStr:: :py:function:`distutils.sysconfig.customize_compiler`> with module 'distutils' has no attribute 'sysconfig.customize_compiler'
406) <DataObjStr:: :py:function:`distutils.sysconfig.get_config_h_filename`> with module 'distutils' has no attribute 'sysconfig.get_config_h_filename'
407) <DataObjStr:: :py:function:`distutils.sysconfig.get_config_var`> with module 'distutils' has no attribute 'sysconfig.get_config_var'
408) <DataObjStr:: :py:function:`distutils.sysconfig.get_config_vars`> with module 'distutils' has no attribute 'sysconfig.get_config_vars'
409) <DataObjStr:: :py:function:`distutils.sysconfig.get_makefile_filename`> with module 'distutils' has no attribute 'sysconfig.get_makefile_filename'
410) <DataObjStr:: :py:function:`distutils.sysconfig.get_python_inc`> with module 'distutils' has no attribute 'sysconfig.get_python_inc'
411) <DataObjStr:: :py:function:`distutils.sysconfig.get_python_lib`> with module 'distutils' has no attribute 'sysconfig.get_python_lib'
412) <DataObjStr:: :py:function:`distutils.sysconfig.set_python_build`> with module 'distutils' has no attribute 'sysconfig.set_python_build'
413) <DataObjStr:: :py:class:`distutils.text_file.TextFile`> with module 'distutils' has no attribute 'text_file.TextFile'
414) <DataObjStr:: :py:method:`distutils.text_file.TextFile.close`> with module 'distutils' has no attribute 'text_file.TextFile'
415) <DataObjStr:: :py:method:`distutils.text_file.TextFile.open`> with module 'distutils' has no attribute 'text_file.TextFile'
416) <DataObjStr:: :py:method:`distutils.text_file.TextFile.readline`> with module 'distutils' has no attribute 'text_file.TextFile'
417) <DataObjStr:: :py:method:`distutils.text_file.TextFile.readlines`> with module 'distutils' has no attribute 'text_file.TextFile'
418) <DataObjStr:: :py:method:`distutils.text_file.TextFile.unreadline`> with module 'distutils' has no attribute 'text_file.TextFile'
419) <DataObjStr:: :py:method:`distutils.text_file.TextFile.warn`> with module 'distutils' has no attribute 'text_file.TextFile'
420) <DataObjStr:: :py:function:`distutils.util.byte_compile`> with module 'distutils' has no attribute 'util.byte_compile'
421) <DataObjStr:: :py:function:`distutils.util.change_root`> with module 'distutils' has no attribute 'util.change_root'
422) <DataObjStr:: :py:function:`distutils.util.check_environ`> with module 'distutils' has no attribute 'util.check_environ'
423) <DataObjStr:: :py:function:`distutils.util.convert_path`> with module 'distutils' has no attribute 'util.convert_path'
424) <DataObjStr:: :py:function:`distutils.util.execute`> with module 'distutils' has no attribute 'util.execute'
425) <DataObjStr:: :py:function:`distutils.util.get_platform`> with module 'distutils' has no attribute 'util.get_platform'
426) <DataObjStr:: :py:function:`distutils.util.rfc822_escape`> with module 'distutils' has no attribute 'util.rfc822_escape'
427) <DataObjStr:: :py:function:`distutils.util.split_quoted`> with module 'distutils' has no attribute 'util.split_quoted'
428) <DataObjStr:: :py:function:`distutils.util.strtobool`> with module 'distutils' has no attribute 'util.strtobool'
429) <DataObjStr:: :py:function:`distutils.util.subst_vars`> with module 'distutils' has no attribute 'util.subst_vars'
430) <DataObjStr:: :py:attribute:`doctest.DocTest.docstring`> with type object 'DocTest' has no attribute 'docstring'
431) <DataObjStr:: :py:attribute:`doctest.DocTest.examples`> with type object 'DocTest' has no attribute 'examples'
432) <DataObjStr:: :py:attribute:`doctest.DocTest.filename`> with type object 'DocTest' has no attribute 'filename'
433) <DataObjStr:: :py:attribute:`doctest.DocTest.globs`> with type object 'DocTest' has no attribute 'globs'
434) <DataObjStr:: :py:attribute:`doctest.DocTest.lineno`> with type object 'DocTest' has no attribute 'lineno'
435) <DataObjStr:: :py:attribute:`doctest.DocTest.name`> with type object 'DocTest' has no attribute 'name'
436) <DataObjStr:: :py:attribute:`doctest.DocTestFailure.example`> with type object 'DocTestFailure' has no attribute 'example'
437) <DataObjStr:: :py:attribute:`doctest.DocTestFailure.got`> with type object 'DocTestFailure' has no attribute 'got'
438) <DataObjStr:: :py:attribute:`doctest.DocTestFailure.test`> with type object 'DocTestFailure' has no attribute 'test'
439) <DataObjStr:: :py:attribute:`doctest.Example.exc_msg`> with type object 'Example' has no attribute 'exc_msg'
440) <DataObjStr:: :py:attribute:`doctest.Example.indent`> with type object 'Example' has no attribute 'indent'
441) <DataObjStr:: :py:attribute:`doctest.Example.lineno`> with type object 'Example' has no attribute 'lineno'
442) <DataObjStr:: :py:attribute:`doctest.Example.options`> with type object 'Example' has no attribute 'options'
443) <DataObjStr:: :py:attribute:`doctest.Example.source`> with type object 'Example' has no attribute 'source'
444) <DataObjStr:: :py:attribute:`doctest.Example.want`> with type object 'Example' has no attribute 'want'
445) <DataObjStr:: :py:attribute:`doctest.UnexpectedException.example`> with type object 'UnexpectedException' has no attribute 'example'
446) <DataObjStr:: :py:attribute:`doctest.UnexpectedException.exc_info`> with type object 'UnexpectedException' has no attribute 'exc_info'
447) <DataObjStr:: :py:attribute:`doctest.UnexpectedException.test`> with type object 'UnexpectedException' has no attribute 'test'
448) <DataObjStr:: :py:class:`email.charset.Charset`> with module 'email' has no attribute 'charset.Charset'
449) <DataObjStr:: :py:method:`email.charset.Charset.__eq__`> with module 'email' has no attribute 'charset.Charset'
450) <DataObjStr:: :py:method:`email.charset.Charset.__ne__`> with module 'email' has no attribute 'charset.Charset'
451) <DataObjStr:: :py:method:`email.charset.Charset.__str__`> with module 'email' has no attribute 'charset.Charset'
452) <DataObjStr:: :py:method:`email.charset.Charset.body_encode`> with module 'email' has no attribute 'charset.Charset'
453) <DataObjStr:: :py:attribute:`email.charset.Charset.body_encoding`> with module 'email' has no attribute 'charset.Charset'
454) <DataObjStr:: :py:method:`email.charset.Charset.get_body_encoding`> with module 'email' has no attribute 'charset.Charset'
455) <DataObjStr:: :py:method:`email.charset.Charset.get_output_charset`> with module 'email' has no attribute 'charset.Charset'
456) <DataObjStr:: :py:method:`email.charset.Charset.header_encode`> with module 'email' has no attribute 'charset.Charset'
457) <DataObjStr:: :py:method:`email.charset.Charset.header_encode_lines`> with module 'email' has no attribute 'charset.Charset'
458) <DataObjStr:: :py:attribute:`email.charset.Charset.header_encoding`> with module 'email' has no attribute 'charset.Charset'
459) <DataObjStr:: :py:attribute:`email.charset.Charset.input_charset`> with module 'email' has no attribute 'charset.Charset'
460) <DataObjStr:: :py:attribute:`email.charset.Charset.input_codec`> with module 'email' has no attribute 'charset.Charset'
461) <DataObjStr:: :py:attribute:`email.charset.Charset.output_charset`> with module 'email' has no attribute 'charset.Charset'
462) <DataObjStr:: :py:attribute:`email.charset.Charset.output_codec`> with module 'email' has no attribute 'charset.Charset'
463) <DataObjStr:: :py:function:`email.charset.add_alias`> with module 'email' has no attribute 'charset.add_alias'
464) <DataObjStr:: :py:function:`email.charset.add_charset`> with module 'email' has no attribute 'charset.add_charset'
465) <DataObjStr:: :py:function:`email.charset.add_codec`> with module 'email' has no attribute 'charset.add_codec'
466) <DataObjStr:: :py:class:`email.contentmanager.ContentManager`> with module 'email' has no attribute 'contentmanager.ContentManager'
467) <DataObjStr:: :py:method:`email.contentmanager.ContentManager.add_get_handler`> with module 'email' has no attribute 'contentmanager.ContentManager'
468) <DataObjStr:: :py:method:`email.contentmanager.ContentManager.add_set_handler`> with module 'email' has no attribute 'contentmanager.ContentManager'
469) <DataObjStr:: :py:method:`email.contentmanager.ContentManager.get_content`> with module 'email' has no attribute 'contentmanager.ContentManager'
470) <DataObjStr:: :py:method:`email.contentmanager.ContentManager.set_content`> with module 'email' has no attribute 'contentmanager.ContentManager'
471) <DataObjStr:: :py:method:`email.contentmanager.get_content`> with module 'email.contentmanager' has no attribute 'get_content'
472) <DataObjStr:: :py:data:`email.contentmanager.raw_data_manager`> with module 'email' has no attribute 'contentmanager.raw_data_manager'
473) <DataObjStr:: :py:method:`email.contentmanager.set_content`> with module 'email.contentmanager' has no attribute 'set_content'
474) <DataObjStr:: :py:function:`email.encoders.encode_7or8bit`> with module 'email' has no attribute 'encoders.encode_7or8bit'
475) <DataObjStr:: :py:function:`email.encoders.encode_base64`> with module 'email' has no attribute 'encoders.encode_base64'
476) <DataObjStr:: :py:function:`email.encoders.encode_noop`> with module 'email' has no attribute 'encoders.encode_noop'
477) <DataObjStr:: :py:function:`email.encoders.encode_quopri`> with module 'email' has no attribute 'encoders.encode_quopri'
478) <DataObjStr:: :py:exception:`email.errors.BoundaryError`> with module 'email' has no attribute 'errors.BoundaryError'
479) <DataObjStr:: :py:exception:`email.errors.HeaderParseError`> with module 'email' has no attribute 'errors.HeaderParseError'
480) <DataObjStr:: :py:exception:`email.errors.MessageError`> with module 'email' has no attribute 'errors.MessageError'
481) <DataObjStr:: :py:exception:`email.errors.MessageParseError`> with module 'email' has no attribute 'errors.MessageParseError'
482) <DataObjStr:: :py:exception:`email.errors.MultipartConversionError`> with module 'email' has no attribute 'errors.MultipartConversionError'
483) <DataObjStr:: :py:class:`email.generator.BytesGenerator`> with module 'email' has no attribute 'generator.BytesGenerator'
484) <DataObjStr:: :py:method:`email.generator.BytesGenerator.clone`> with module 'email' has no attribute 'generator.BytesGenerator'
485) <DataObjStr:: :py:method:`email.generator.BytesGenerator.flatten`> with module 'email' has no attribute 'generator.BytesGenerator'
486) <DataObjStr:: :py:method:`email.generator.BytesGenerator.write`> with module 'email' has no attribute 'generator.BytesGenerator'
487) <DataObjStr:: :py:class:`email.generator.DecodedGenerator`> with module 'email' has no attribute 'generator.DecodedGenerator'
488) <DataObjStr:: :py:class:`email.generator.Generator`> with module 'email' has no attribute 'generator.Generator'
489) <DataObjStr:: :py:method:`email.generator.Generator.clone`> with module 'email' has no attribute 'generator.Generator'
490) <DataObjStr:: :py:method:`email.generator.Generator.flatten`> with module 'email' has no attribute 'generator.Generator'
491) <DataObjStr:: :py:method:`email.generator.Generator.write`> with module 'email' has no attribute 'generator.Generator'
492) <DataObjStr:: :py:class:`email.header.Header`> with module 'email' has no attribute 'header.Header'
493) <DataObjStr:: :py:method:`email.header.Header.__eq__`> with module 'email' has no attribute 'header.Header'
494) <DataObjStr:: :py:method:`email.header.Header.__ne__`> with module 'email' has no attribute 'header.Header'
495) <DataObjStr:: :py:method:`email.header.Header.__str__`> with module 'email' has no attribute 'header.Header'
496) <DataObjStr:: :py:method:`email.header.Header.append`> with module 'email' has no attribute 'header.Header'
497) <DataObjStr:: :py:method:`email.header.Header.encode`> with module 'email' has no attribute 'header.Header'
498) <DataObjStr:: :py:function:`email.header.decode_header`> with module 'email' has no attribute 'header.decode_header'
499) <DataObjStr:: :py:function:`email.header.make_header`> with module 'email' has no attribute 'header.make_header'
500) <DataObjStr:: :py:class:`email.headerregistry.Address`> with module 'email' has no attribute 'headerregistry.Address'
501) <DataObjStr:: :py:method:`email.headerregistry.Address.__str__`> with module 'email' has no attribute 'headerregistry.Address'
502) <DataObjStr:: :py:attribute:`email.headerregistry.Address.addr_spec`> with module 'email' has no attribute 'headerregistry.Address'
503) <DataObjStr:: :py:attribute:`email.headerregistry.Address.display_name`> with module 'email' has no attribute 'headerregistry.Address'
504) <DataObjStr:: :py:attribute:`email.headerregistry.Address.domain`> with module 'email' has no attribute 'headerregistry.Address'
505) <DataObjStr:: :py:attribute:`email.headerregistry.Address.username`> with module 'email' has no attribute 'headerregistry.Address'
506) <DataObjStr:: :py:class:`email.headerregistry.AddressHeader`> with module 'email' has no attribute 'headerregistry.AddressHeader'
507) <DataObjStr:: :py:attribute:`email.headerregistry.AddressHeader.addresses`> with module 'email' has no attribute 'headerregistry.AddressHeader'
508) <DataObjStr:: :py:attribute:`email.headerregistry.AddressHeader.groups`> with module 'email' has no attribute 'headerregistry.AddressHeader'
509) <DataObjStr:: :py:class:`email.headerregistry.BaseHeader`> with module 'email' has no attribute 'headerregistry.BaseHeader'
510) <DataObjStr:: :py:attribute:`email.headerregistry.BaseHeader.defects`> with module 'email' has no attribute 'headerregistry.BaseHeader'
511) <DataObjStr:: :py:method:`email.headerregistry.BaseHeader.fold`> with module 'email' has no attribute 'headerregistry.BaseHeader'
512) <DataObjStr:: :py:attribute:`email.headerregistry.BaseHeader.max_count`> with module 'email' has no attribute 'headerregistry.BaseHeader'
513) <DataObjStr:: :py:attribute:`email.headerregistry.BaseHeader.name`> with module 'email' has no attribute 'headerregistry.BaseHeader'
514) <DataObjStr:: :py:class:`email.headerregistry.ContentDispositionHeader`> with module 'email' has no attribute 'headerregistry.ContentDispositionHeader'
515) <DataObjStr:: :py:attribute:`email.headerregistry.ContentDispositionHeader.content_disposition`> with module 'email' has no attribute 'headerregistry.ContentDispositionHeader'
516) <DataObjStr:: :py:class:`email.headerregistry.ContentTransferEncoding`> with module 'email' has no attribute 'headerregistry.ContentTransferEncoding'
517) <DataObjStr:: :py:attribute:`email.headerregistry.ContentTransferEncoding.cte`> with module 'email' has no attribute 'headerregistry.ContentTransferEncoding'
518) <DataObjStr:: :py:class:`email.headerregistry.ContentTypeHeader`> with module 'email' has no attribute 'headerregistry.ContentTypeHeader'
519) <DataObjStr:: :py:attribute:`email.headerregistry.ContentTypeHeader.content_type`> with module 'email' has no attribute 'headerregistry.ContentTypeHeader'
520) <DataObjStr:: :py:attribute:`email.headerregistry.ContentTypeHeader.maintype`> with module 'email' has no attribute 'headerregistry.ContentTypeHeader'
521) <DataObjStr:: :py:attribute:`email.headerregistry.ContentTypeHeader.subtype`> with module 'email' has no attribute 'headerregistry.ContentTypeHeader'
522) <DataObjStr:: :py:class:`email.headerregistry.DateHeader`> with module 'email' has no attribute 'headerregistry.DateHeader'
523) <DataObjStr:: :py:attribute:`email.headerregistry.DateHeader.datetime`> with module 'email' has no attribute 'headerregistry.DateHeader'
524) <DataObjStr:: :py:class:`email.headerregistry.Group`> with module 'email' has no attribute 'headerregistry.Group'
525) <DataObjStr:: :py:method:`email.headerregistry.Group.__str__`> with module 'email' has no attribute 'headerregistry.Group'
526) <DataObjStr:: :py:attribute:`email.headerregistry.Group.addresses`> with module 'email' has no attribute 'headerregistry.Group'
527) <DataObjStr:: :py:attribute:`email.headerregistry.Group.display_name`> with module 'email' has no attribute 'headerregistry.Group'
528) <DataObjStr:: :py:class:`email.headerregistry.HeaderRegistry`> with module 'email' has no attribute 'headerregistry.HeaderRegistry'
529) <DataObjStr:: :py:method:`email.headerregistry.HeaderRegistry.__call__`> with module 'email' has no attribute 'headerregistry.HeaderRegistry'
530) <DataObjStr:: :py:method:`email.headerregistry.HeaderRegistry.__getitem__`> with module 'email' has no attribute 'headerregistry.HeaderRegistry'
531) <DataObjStr:: :py:method:`email.headerregistry.HeaderRegistry.map_to_type`> with module 'email' has no attribute 'headerregistry.HeaderRegistry'
532) <DataObjStr:: :py:class:`email.headerregistry.MIMEVersionHeader`> with module 'email' has no attribute 'headerregistry.MIMEVersionHeader'
533) <DataObjStr:: :py:attribute:`email.headerregistry.MIMEVersionHeader.major`> with module 'email' has no attribute 'headerregistry.MIMEVersionHeader'
534) <DataObjStr:: :py:attribute:`email.headerregistry.MIMEVersionHeader.minor`> with module 'email' has no attribute 'headerregistry.MIMEVersionHeader'
535) <DataObjStr:: :py:attribute:`email.headerregistry.MIMEVersionHeader.version`> with module 'email' has no attribute 'headerregistry.MIMEVersionHeader'
536) <DataObjStr:: :py:class:`email.headerregistry.ParameterizedMIMEHeader`> with module 'email' has no attribute 'headerregistry.ParameterizedMIMEHeader'
537) <DataObjStr:: :py:attribute:`email.headerregistry.ParameterizedMIMEHeader.params`> with module 'email' has no attribute 'headerregistry.ParameterizedMIMEHeader'
538) <DataObjStr:: :py:class:`email.headerregistry.SingleAddressHeader`> with module 'email' has no attribute 'headerregistry.SingleAddressHeader'
539) <DataObjStr:: :py:attribute:`email.headerregistry.SingleAddressHeader.address`> with module 'email' has no attribute 'headerregistry.SingleAddressHeader'
540) <DataObjStr:: :py:class:`email.headerregistry.UnstructuredHeader`> with module 'email' has no attribute 'headerregistry.UnstructuredHeader'
541) <DataObjStr:: :py:function:`email.iterators._structure`> with module 'email' has no attribute 'iterators._structure'
542) <DataObjStr:: :py:function:`email.iterators.body_line_iterator`> with module 'email' has no attribute 'iterators.body_line_iterator'
543) <DataObjStr:: :py:function:`email.iterators.typed_subpart_iterator`> with module 'email' has no attribute 'iterators.typed_subpart_iterator'
544) <DataObjStr:: :py:class:`email.message.EmailMessage`> with module 'email' has no attribute 'message.EmailMessage'
545) <DataObjStr:: :py:method:`email.message.EmailMessage.__bytes__`> with module 'email' has no attribute 'message.EmailMessage'
546) <DataObjStr:: :py:method:`email.message.EmailMessage.__contains__`> with module 'email' has no attribute 'message.EmailMessage'
547) <DataObjStr:: :py:method:`email.message.EmailMessage.__delitem__`> with module 'email' has no attribute 'message.EmailMessage'
548) <DataObjStr:: :py:method:`email.message.EmailMessage.__getitem__`> with module 'email' has no attribute 'message.EmailMessage'
549) <DataObjStr:: :py:method:`email.message.EmailMessage.__len__`> with module 'email' has no attribute 'message.EmailMessage'
550) <DataObjStr:: :py:method:`email.message.EmailMessage.__setitem__`> with module 'email' has no attribute 'message.EmailMessage'
551) <DataObjStr:: :py:method:`email.message.EmailMessage.__str__`> with module 'email' has no attribute 'message.EmailMessage'
552) <DataObjStr:: :py:method:`email.message.EmailMessage.add_alternative`> with module 'email' has no attribute 'message.EmailMessage'
553) <DataObjStr:: :py:method:`email.message.EmailMessage.add_attachment`> with module 'email' has no attribute 'message.EmailMessage'
554) <DataObjStr:: :py:method:`email.message.EmailMessage.add_header`> with module 'email' has no attribute 'message.EmailMessage'
555) <DataObjStr:: :py:method:`email.message.EmailMessage.add_related`> with module 'email' has no attribute 'message.EmailMessage'
556) <DataObjStr:: :py:method:`email.message.EmailMessage.as_bytes`> with module 'email' has no attribute 'message.EmailMessage'
557) <DataObjStr:: :py:method:`email.message.EmailMessage.as_string`> with module 'email' has no attribute 'message.EmailMessage'
558) <DataObjStr:: :py:method:`email.message.EmailMessage.clear`> with module 'email' has no attribute 'message.EmailMessage'
559) <DataObjStr:: :py:method:`email.message.EmailMessage.clear_content`> with module 'email' has no attribute 'message.EmailMessage'
560) <DataObjStr:: :py:attribute:`email.message.EmailMessage.defects`> with module 'email' has no attribute 'message.EmailMessage'
561) <DataObjStr:: :py:method:`email.message.EmailMessage.del_param`> with module 'email' has no attribute 'message.EmailMessage'
562) <DataObjStr:: :py:attribute:`email.message.EmailMessage.epilogue`> with module 'email' has no attribute 'message.EmailMessage'
563) <DataObjStr:: :py:method:`email.message.EmailMessage.get`> with module 'email' has no attribute 'message.EmailMessage'
564) <DataObjStr:: :py:method:`email.message.EmailMessage.get_all`> with module 'email' has no attribute 'message.EmailMessage'
565) <DataObjStr:: :py:method:`email.message.EmailMessage.get_body`> with module 'email' has no attribute 'message.EmailMessage'
566) <DataObjStr:: :py:method:`email.message.EmailMessage.get_boundary`> with module 'email' has no attribute 'message.EmailMessage'
567) <DataObjStr:: :py:method:`email.message.EmailMessage.get_charsets`> with module 'email' has no attribute 'message.EmailMessage'
568) <DataObjStr:: :py:method:`email.message.EmailMessage.get_content`> with module 'email' has no attribute 'message.EmailMessage'
569) <DataObjStr:: :py:method:`email.message.EmailMessage.get_content_charset`> with module 'email' has no attribute 'message.EmailMessage'
570) <DataObjStr:: :py:method:`email.message.EmailMessage.get_content_disposition`> with module 'email' has no attribute 'message.EmailMessage'
571) <DataObjStr:: :py:method:`email.message.EmailMessage.get_content_maintype`> with module 'email' has no attribute 'message.EmailMessage'
572) <DataObjStr:: :py:method:`email.message.EmailMessage.get_content_subtype`> with module 'email' has no attribute 'message.EmailMessage'
573) <DataObjStr:: :py:method:`email.message.EmailMessage.get_content_type`> with module 'email' has no attribute 'message.EmailMessage'
574) <DataObjStr:: :py:method:`email.message.EmailMessage.get_default_type`> with module 'email' has no attribute 'message.EmailMessage'
575) <DataObjStr:: :py:method:`email.message.EmailMessage.get_filename`> with module 'email' has no attribute 'message.EmailMessage'
576) <DataObjStr:: :py:method:`email.message.EmailMessage.get_unixfrom`> with module 'email' has no attribute 'message.EmailMessage'
577) <DataObjStr:: :py:method:`email.message.EmailMessage.is_attachment`> with module 'email' has no attribute 'message.EmailMessage'
578) <DataObjStr:: :py:method:`email.message.EmailMessage.is_multipart`> with module 'email' has no attribute 'message.EmailMessage'
579) <DataObjStr:: :py:method:`email.message.EmailMessage.items`> with module 'email' has no attribute 'message.EmailMessage'
580) <DataObjStr:: :py:method:`email.message.EmailMessage.iter_attachments`> with module 'email' has no attribute 'message.EmailMessage'
581) <DataObjStr:: :py:method:`email.message.EmailMessage.iter_parts`> with module 'email' has no attribute 'message.EmailMessage'
582) <DataObjStr:: :py:method:`email.message.EmailMessage.keys`> with module 'email' has no attribute 'message.EmailMessage'
583) <DataObjStr:: :py:method:`email.message.EmailMessage.make_alternative`> with module 'email' has no attribute 'message.EmailMessage'
584) <DataObjStr:: :py:method:`email.message.EmailMessage.make_mixed`> with module 'email' has no attribute 'message.EmailMessage'
585) <DataObjStr:: :py:method:`email.message.EmailMessage.make_related`> with module 'email' has no attribute 'message.EmailMessage'
586) <DataObjStr:: :py:attribute:`email.message.EmailMessage.preamble`> with module 'email' has no attribute 'message.EmailMessage'
587) <DataObjStr:: :py:method:`email.message.EmailMessage.replace_header`> with module 'email' has no attribute 'message.EmailMessage'
588) <DataObjStr:: :py:method:`email.message.EmailMessage.set_boundary`> with module 'email' has no attribute 'message.EmailMessage'
589) <DataObjStr:: :py:method:`email.message.EmailMessage.set_content`> with module 'email' has no attribute 'message.EmailMessage'
590) <DataObjStr:: :py:method:`email.message.EmailMessage.set_default_type`> with module 'email' has no attribute 'message.EmailMessage'
591) <DataObjStr:: :py:method:`email.message.EmailMessage.set_param`> with module 'email' has no attribute 'message.EmailMessage'
592) <DataObjStr:: :py:method:`email.message.EmailMessage.set_unixfrom`> with module 'email' has no attribute 'message.EmailMessage'
593) <DataObjStr:: :py:method:`email.message.EmailMessage.values`> with module 'email' has no attribute 'message.EmailMessage'
594) <DataObjStr:: :py:method:`email.message.EmailMessage.walk`> with module 'email' has no attribute 'message.EmailMessage'
595) <DataObjStr:: :py:class:`email.message.MIMEPart`> with module 'email' has no attribute 'message.MIMEPart'
596) <DataObjStr:: :py:class:`email.message.Message`> with module 'email' has no attribute 'message.Message'
597) <DataObjStr:: :py:method:`email.message.Message.__bytes__`> with module 'email' has no attribute 'message.Message'
598) <DataObjStr:: :py:method:`email.message.Message.__contains__`> with module 'email' has no attribute 'message.Message'
599) <DataObjStr:: :py:method:`email.message.Message.__delitem__`> with module 'email' has no attribute 'message.Message'
600) <DataObjStr:: :py:method:`email.message.Message.__getitem__`> with module 'email' has no attribute 'message.Message'
601) <DataObjStr:: :py:method:`email.message.Message.__len__`> with module 'email' has no attribute 'message.Message'
602) <DataObjStr:: :py:method:`email.message.Message.__setitem__`> with module 'email' has no attribute 'message.Message'
603) <DataObjStr:: :py:method:`email.message.Message.__str__`> with module 'email' has no attribute 'message.Message'
604) <DataObjStr:: :py:method:`email.message.Message.add_header`> with module 'email' has no attribute 'message.Message'
605) <DataObjStr:: :py:method:`email.message.Message.as_bytes`> with module 'email' has no attribute 'message.Message'
606) <DataObjStr:: :py:method:`email.message.Message.as_string`> with module 'email' has no attribute 'message.Message'
607) <DataObjStr:: :py:method:`email.message.Message.attach`> with module 'email' has no attribute 'message.Message'
608) <DataObjStr:: :py:attribute:`email.message.Message.defects`> with module 'email' has no attribute 'message.Message'
609) <DataObjStr:: :py:method:`email.message.Message.del_param`> with module 'email' has no attribute 'message.Message'
610) <DataObjStr:: :py:attribute:`email.message.Message.epilogue`> with module 'email' has no attribute 'message.Message'
611) <DataObjStr:: :py:method:`email.message.Message.get`> with module 'email' has no attribute 'message.Message'
612) <DataObjStr:: :py:method:`email.message.Message.get_all`> with module 'email' has no attribute 'message.Message'
613) <DataObjStr:: :py:method:`email.message.Message.get_boundary`> with module 'email' has no attribute 'message.Message'
614) <DataObjStr:: :py:method:`email.message.Message.get_charset`> with module 'email' has no attribute 'message.Message'
615) <DataObjStr:: :py:method:`email.message.Message.get_charsets`> with module 'email' has no attribute 'message.Message'
616) <DataObjStr:: :py:method:`email.message.Message.get_content_charset`> with module 'email' has no attribute 'message.Message'
617) <DataObjStr:: :py:method:`email.message.Message.get_content_disposition`> with module 'email' has no attribute 'message.Message'
618) <DataObjStr:: :py:method:`email.message.Message.get_content_maintype`> with module 'email' has no attribute 'message.Message'
619) <DataObjStr:: :py:method:`email.message.Message.get_content_subtype`> with module 'email' has no attribute 'message.Message'
620) <DataObjStr:: :py:method:`email.message.Message.get_content_type`> with module 'email' has no attribute 'message.Message'
621) <DataObjStr:: :py:method:`email.message.Message.get_default_type`> with module 'email' has no attribute 'message.Message'
622) <DataObjStr:: :py:method:`email.message.Message.get_filename`> with module 'email' has no attribute 'message.Message'
623) <DataObjStr:: :py:method:`email.message.Message.get_param`> with module 'email' has no attribute 'message.Message'
624) <DataObjStr:: :py:method:`email.message.Message.get_params`> with module 'email' has no attribute 'message.Message'
625) <DataObjStr:: :py:method:`email.message.Message.get_payload`> with module 'email' has no attribute 'message.Message'
626) <DataObjStr:: :py:method:`email.message.Message.get_unixfrom`> with module 'email' has no attribute 'message.Message'
627) <DataObjStr:: :py:method:`email.message.Message.is_multipart`> with module 'email' has no attribute 'message.Message'
628) <DataObjStr:: :py:method:`email.message.Message.items`> with module 'email' has no attribute 'message.Message'
629) <DataObjStr:: :py:method:`email.message.Message.keys`> with module 'email' has no attribute 'message.Message'
630) <DataObjStr:: :py:attribute:`email.message.Message.preamble`> with module 'email' has no attribute 'message.Message'
631) <DataObjStr:: :py:method:`email.message.Message.replace_header`> with module 'email' has no attribute 'message.Message'
632) <DataObjStr:: :py:method:`email.message.Message.set_boundary`> with module 'email' has no attribute 'message.Message'
633) <DataObjStr:: :py:method:`email.message.Message.set_charset`> with module 'email' has no attribute 'message.Message'
634) <DataObjStr:: :py:method:`email.message.Message.set_default_type`> with module 'email' has no attribute 'message.Message'
635) <DataObjStr:: :py:method:`email.message.Message.set_param`> with module 'email' has no attribute 'message.Message'
636) <DataObjStr:: :py:method:`email.message.Message.set_payload`> with module 'email' has no attribute 'message.Message'
637) <DataObjStr:: :py:method:`email.message.Message.set_type`> with module 'email' has no attribute 'message.Message'
638) <DataObjStr:: :py:method:`email.message.Message.set_unixfrom`> with module 'email' has no attribute 'message.Message'
639) <DataObjStr:: :py:method:`email.message.Message.values`> with module 'email' has no attribute 'message.Message'
640) <DataObjStr:: :py:method:`email.message.Message.walk`> with module 'email' has no attribute 'message.Message'
641) <DataObjStr:: :py:class:`email.mime.application.MIMEApplication`> with module 'email' has no attribute 'mime.application.MIMEApplication'
642) <DataObjStr:: :py:class:`email.mime.audio.MIMEAudio`> with module 'email' has no attribute 'mime.audio.MIMEAudio'
643) <DataObjStr:: :py:class:`email.mime.base.MIMEBase`> with module 'email' has no attribute 'mime.base.MIMEBase'
644) <DataObjStr:: :py:class:`email.mime.image.MIMEImage`> with module 'email' has no attribute 'mime.image.MIMEImage'
645) <DataObjStr:: :py:class:`email.mime.message.MIMEMessage`> with module 'email' has no attribute 'mime.message.MIMEMessage'
646) <DataObjStr:: :py:class:`email.mime.multipart.MIMEMultipart`> with module 'email' has no attribute 'mime.multipart.MIMEMultipart'
647) <DataObjStr:: :py:class:`email.mime.nonmultipart.MIMENonMultipart`> with module 'email' has no attribute 'mime.nonmultipart.MIMENonMultipart'
648) <DataObjStr:: :py:class:`email.mime.text.MIMEText`> with module 'email' has no attribute 'mime.text.MIMEText'
649) <DataObjStr:: :py:class:`email.parser.BytesFeedParser`> with module 'email' has no attribute 'parser.BytesFeedParser'
650) <DataObjStr:: :py:method:`email.parser.BytesFeedParser.close`> with module 'email' has no attribute 'parser.BytesFeedParser'
651) <DataObjStr:: :py:method:`email.parser.BytesFeedParser.feed`> with module 'email' has no attribute 'parser.BytesFeedParser'
652) <DataObjStr:: :py:class:`email.parser.BytesHeaderParser`> with module 'email' has no attribute 'parser.BytesHeaderParser'
653) <DataObjStr:: :py:class:`email.parser.BytesParser`> with module 'email' has no attribute 'parser.BytesParser'
654) <DataObjStr:: :py:method:`email.parser.BytesParser.parse`> with module 'email' has no attribute 'parser.BytesParser'
655) <DataObjStr:: :py:method:`email.parser.BytesParser.parsebytes`> with module 'email' has no attribute 'parser.BytesParser'
656) <DataObjStr:: :py:class:`email.parser.FeedParser`> with module 'email' has no attribute 'parser.FeedParser'
657) <DataObjStr:: :py:class:`email.parser.HeaderParser`> with module 'email' has no attribute 'parser.HeaderParser'
658) <DataObjStr:: :py:class:`email.parser.Parser`> with module 'email' has no attribute 'parser.Parser'
659) <DataObjStr:: :py:method:`email.parser.Parser.parse`> with module 'email' has no attribute 'parser.Parser'
660) <DataObjStr:: :py:method:`email.parser.Parser.parsestr`> with module 'email' has no attribute 'parser.Parser'
661) <DataObjStr:: :py:class:`email.policy.Compat32`> with module 'email' has no attribute 'policy.Compat32'
662) <DataObjStr:: :py:method:`email.policy.Compat32.fold`> with module 'email' has no attribute 'policy.Compat32'
663) <DataObjStr:: :py:method:`email.policy.Compat32.fold_binary`> with module 'email' has no attribute 'policy.Compat32'
664) <DataObjStr:: :py:method:`email.policy.Compat32.header_fetch_parse`> with module 'email' has no attribute 'policy.Compat32'
665) <DataObjStr:: :py:method:`email.policy.Compat32.header_source_parse`> with module 'email' has no attribute 'policy.Compat32'
666) <DataObjStr:: :py:method:`email.policy.Compat32.header_store_parse`> with module 'email' has no attribute 'policy.Compat32'
667) <DataObjStr:: :py:attribute:`email.policy.Compat32.mangle_from_`> with module 'email' has no attribute 'policy.Compat32'
668) <DataObjStr:: :py:class:`email.policy.EmailPolicy`> with module 'email' has no attribute 'policy.EmailPolicy'
669) <DataObjStr:: :py:attribute:`email.policy.EmailPolicy.content_manager`> with module 'email' has no attribute 'policy.EmailPolicy'
670) <DataObjStr:: :py:method:`email.policy.EmailPolicy.fold`> with module 'email' has no attribute 'policy.EmailPolicy'
671) <DataObjStr:: :py:method:`email.policy.EmailPolicy.fold_binary`> with module 'email' has no attribute 'policy.EmailPolicy'
672) <DataObjStr:: :py:attribute:`email.policy.EmailPolicy.header_factory`> with module 'email' has no attribute 'policy.EmailPolicy'
673) <DataObjStr:: :py:method:`email.policy.EmailPolicy.header_fetch_parse`> with module 'email' has no attribute 'policy.EmailPolicy'
674) <DataObjStr:: :py:method:`email.policy.EmailPolicy.header_max_count`> with module 'email' has no attribute 'policy.EmailPolicy'
675) <DataObjStr:: :py:method:`email.policy.EmailPolicy.header_source_parse`> with module 'email' has no attribute 'policy.EmailPolicy'
676) <DataObjStr:: :py:method:`email.policy.EmailPolicy.header_store_parse`> with module 'email' has no attribute 'policy.EmailPolicy'
677) <DataObjStr:: :py:attribute:`email.policy.EmailPolicy.refold_source`> with module 'email' has no attribute 'policy.EmailPolicy'
678) <DataObjStr:: :py:attribute:`email.policy.EmailPolicy.utf8`> with module 'email' has no attribute 'policy.EmailPolicy'
679) <DataObjStr:: :py:data:`email.policy.HTTP`> with module 'email' has no attribute 'policy.HTTP'
680) <DataObjStr:: :py:class:`email.policy.Policy`> with module 'email' has no attribute 'policy.Policy'
681) <DataObjStr:: :py:method:`email.policy.Policy.clone`> with module 'email' has no attribute 'policy.Policy'
682) <DataObjStr:: :py:attribute:`email.policy.Policy.cte_type`> with module 'email' has no attribute 'policy.Policy'
683) <DataObjStr:: :py:method:`email.policy.Policy.fold`> with module 'email' has no attribute 'policy.Policy'
684) <DataObjStr:: :py:method:`email.policy.Policy.fold_binary`> with module 'email' has no attribute 'policy.Policy'
685) <DataObjStr:: :py:method:`email.policy.Policy.handle_defect`> with module 'email' has no attribute 'policy.Policy'
686) <DataObjStr:: :py:method:`email.policy.Policy.header_fetch_parse`> with module 'email' has no attribute 'policy.Policy'
687) <DataObjStr:: :py:method:`email.policy.Policy.header_max_count`> with module 'email' has no attribute 'policy.Policy'
688) <DataObjStr:: :py:method:`email.policy.Policy.header_source_parse`> with module 'email' has no attribute 'policy.Policy'
689) <DataObjStr:: :py:method:`email.policy.Policy.header_store_parse`> with module 'email' has no attribute 'policy.Policy'
690) <DataObjStr:: :py:attribute:`email.policy.Policy.linesep`> with module 'email' has no attribute 'policy.Policy'
691) <DataObjStr:: :py:attribute:`email.policy.Policy.mangle_from_`> with module 'email' has no attribute 'policy.Policy'
692) <DataObjStr:: :py:attribute:`email.policy.Policy.max_line_length`> with module 'email' has no attribute 'policy.Policy'
693) <DataObjStr:: :py:attribute:`email.policy.Policy.message_factory`> with module 'email' has no attribute 'policy.Policy'
694) <DataObjStr:: :py:attribute:`email.policy.Policy.raise_on_defect`> with module 'email' has no attribute 'policy.Policy'
695) <DataObjStr:: :py:method:`email.policy.Policy.register_defect`> with module 'email' has no attribute 'policy.Policy'
696) <DataObjStr:: :py:data:`email.policy.SMTP`> with module 'email' has no attribute 'policy.SMTP'
697) <DataObjStr:: :py:data:`email.policy.SMTPUTF8`> with module 'email' has no attribute 'policy.SMTPUTF8'
698) <DataObjStr:: :py:data:`email.policy.compat32`> with module 'email' has no attribute 'policy.compat32'
699) <DataObjStr:: :py:data:`email.policy.default`> with module 'email' has no attribute 'policy.default'
700) <DataObjStr:: :py:data:`email.policy.strict`> with module 'email' has no attribute 'policy.strict'
701) <DataObjStr:: :py:function:`email.utils.collapse_rfc2231_value`> with module 'email' has no attribute 'utils.collapse_rfc2231_value'
702) <DataObjStr:: :py:function:`email.utils.decode_params`> with module 'email' has no attribute 'utils.decode_params'
703) <DataObjStr:: :py:function:`email.utils.decode_rfc2231`> with module 'email' has no attribute 'utils.decode_rfc2231'
704) <DataObjStr:: :py:function:`email.utils.encode_rfc2231`> with module 'email' has no attribute 'utils.encode_rfc2231'
705) <DataObjStr:: :py:function:`email.utils.format_datetime`> with module 'email' has no attribute 'utils.format_datetime'
706) <DataObjStr:: :py:function:`email.utils.formataddr`> with module 'email' has no attribute 'utils.formataddr'
707) <DataObjStr:: :py:function:`email.utils.formatdate`> with module 'email' has no attribute 'utils.formatdate'
708) <DataObjStr:: :py:function:`email.utils.getaddresses`> with module 'email' has no attribute 'utils.getaddresses'
709) <DataObjStr:: :py:function:`email.utils.localtime`> with module 'email' has no attribute 'utils.localtime'
710) <DataObjStr:: :py:function:`email.utils.make_msgid`> with module 'email' has no attribute 'utils.make_msgid'
711) <DataObjStr:: :py:function:`email.utils.mktime_tz`> with module 'email' has no attribute 'utils.mktime_tz'
712) <DataObjStr:: :py:function:`email.utils.parseaddr`> with module 'email' has no attribute 'utils.parseaddr'
713) <DataObjStr:: :py:function:`email.utils.parsedate`> with module 'email' has no attribute 'utils.parsedate'
714) <DataObjStr:: :py:function:`email.utils.parsedate_to_datetime`> with module 'email' has no attribute 'utils.parsedate_to_datetime'
715) <DataObjStr:: :py:function:`email.utils.parsedate_tz`> with module 'email' has no attribute 'utils.parsedate_tz'
716) <DataObjStr:: :py:function:`email.utils.quote`> with module 'email' has no attribute 'utils.quote'
717) <DataObjStr:: :py:function:`email.utils.unquote`> with module 'email' has no attribute 'utils.unquote'
718) <DataObjStr:: :py:function:`encodings.idna.ToASCII`> with module 'encodings' has no attribute 'idna.ToASCII'
719) <DataObjStr:: :py:function:`encodings.idna.ToUnicode`> with module 'encodings' has no attribute 'idna.ToUnicode'
720) <DataObjStr:: :py:function:`encodings.idna.nameprep`> with module 'encodings' has no attribute 'idna.nameprep'
721) <DataObjStr:: :py:module:`encodings.mbcs`> with cannot import name 'mbcs_encode' from 'codecs' (/usr/lib/python3.10/codecs.py)
722) <DataObjStr:: :py:function:`file_created`> with module 'builtins' has no attribute 'file_created'
723) <DataObjStr:: :py:attribute:`filecmp.DEFAULT_IGNORES`> with module 'builtins' has no attribute 'filecmp'
724) <DataObjStr:: :py:attribute:`filecmp.dircmp.common`> with type object 'dircmp' has no attribute 'common'
725) <DataObjStr:: :py:attribute:`filecmp.dircmp.common_dirs`> with type object 'dircmp' has no attribute 'common_dirs'
726) <DataObjStr:: :py:attribute:`filecmp.dircmp.common_files`> with type object 'dircmp' has no attribute 'common_files'
727) <DataObjStr:: :py:attribute:`filecmp.dircmp.common_funny`> with type object 'dircmp' has no attribute 'common_funny'
728) <DataObjStr:: :py:attribute:`filecmp.dircmp.diff_files`> with type object 'dircmp' has no attribute 'diff_files'
729) <DataObjStr:: :py:attribute:`filecmp.dircmp.funny_files`> with type object 'dircmp' has no attribute 'funny_files'
730) <DataObjStr:: :py:attribute:`filecmp.dircmp.left`> with type object 'dircmp' has no attribute 'left'
731) <DataObjStr:: :py:attribute:`filecmp.dircmp.left_list`> with type object 'dircmp' has no attribute 'left_list'
732) <DataObjStr:: :py:attribute:`filecmp.dircmp.left_only`> with type object 'dircmp' has no attribute 'left_only'
733) <DataObjStr:: :py:attribute:`filecmp.dircmp.right`> with type object 'dircmp' has no attribute 'right'
734) <DataObjStr:: :py:attribute:`filecmp.dircmp.right_list`> with type object 'dircmp' has no attribute 'right_list'
735) <DataObjStr:: :py:attribute:`filecmp.dircmp.right_only`> with type object 'dircmp' has no attribute 'right_only'
736) <DataObjStr:: :py:attribute:`filecmp.dircmp.same_files`> with type object 'dircmp' has no attribute 'same_files'
737) <DataObjStr:: :py:attribute:`filecmp.dircmp.subdirs`> with type object 'dircmp' has no attribute 'subdirs'
738) <DataObjStr:: :py:method:`frame.clear`> with module 'builtins' has no attribute 'frame'
739) <DataObjStr:: :py:method:`frozenset.add`> with type object 'frozenset' has no attribute 'add'
740) <DataObjStr:: :py:method:`frozenset.clear`> with type object 'frozenset' has no attribute 'clear'
741) <DataObjStr:: :py:method:`frozenset.difference_update`> with type object 'frozenset' has no attribute 'difference_update'
742) <DataObjStr:: :py:method:`frozenset.discard`> with type object 'frozenset' has no attribute 'discard'
743) <DataObjStr:: :py:method:`frozenset.intersection_update`> with type object 'frozenset' has no attribute 'intersection_update'
744) <DataObjStr:: :py:method:`frozenset.pop`> with type object 'frozenset' has no attribute 'pop'
745) <DataObjStr:: :py:method:`frozenset.remove`> with type object 'frozenset' has no attribute 'remove'
746) <DataObjStr:: :py:method:`frozenset.symmetric_difference_update`> with type object 'frozenset' has no attribute 'symmetric_difference_update'
747) <DataObjStr:: :py:method:`frozenset.update`> with type object 'frozenset' has no attribute 'update'
748) <DataObjStr:: :py:method:`generator.__next__`> with module 'builtins' has no attribute 'generator'
749) <DataObjStr:: :py:method:`generator.close`> with module 'builtins' has no attribute 'generator'
750) <DataObjStr:: :py:method:`generator.send`> with module 'builtins' has no attribute 'generator'
751) <DataObjStr:: :py:method:`generator.throw`> with module 'builtins' has no attribute 'generator'
752) <DataObjStr:: :py:attribute:`genericalias.__args__`> with module 'builtins' has no attribute 'genericalias'
753) <DataObjStr:: :py:attribute:`genericalias.__origin__`> with module 'builtins' has no attribute 'genericalias'
754) <DataObjStr:: :py:attribute:`genericalias.__parameters__`> with module 'builtins' has no attribute 'genericalias'
755) <DataObjStr:: :py:function:`get_special_folder_path`> with module 'builtins' has no attribute 'get_special_folder_path'
756) <DataObjStr:: :py:data:`hashlib.blake2b.MAX_DIGEST_SIZE`> with module 'hashlib' has no attribute 'blake2b.MAX_DIGEST_SIZE'
757) <DataObjStr:: :py:data:`hashlib.blake2b.MAX_KEY_SIZE`> with module 'hashlib' has no attribute 'blake2b.MAX_KEY_SIZE'
758) <DataObjStr:: :py:data:`hashlib.blake2b.PERSON_SIZE`> with module 'hashlib' has no attribute 'blake2b.PERSON_SIZE'
759) <DataObjStr:: :py:data:`hashlib.blake2b.SALT_SIZE`> with module 'hashlib' has no attribute 'blake2b.SALT_SIZE'
760) <DataObjStr:: :py:data:`hashlib.blake2s.MAX_DIGEST_SIZE`> with module 'hashlib' has no attribute 'blake2s.MAX_DIGEST_SIZE'
761) <DataObjStr:: :py:data:`hashlib.blake2s.MAX_KEY_SIZE`> with module 'hashlib' has no attribute 'blake2s.MAX_KEY_SIZE'
762) <DataObjStr:: :py:data:`hashlib.blake2s.PERSON_SIZE`> with module 'hashlib' has no attribute 'blake2s.PERSON_SIZE'
763) <DataObjStr:: :py:data:`hashlib.blake2s.SALT_SIZE`> with module 'hashlib' has no attribute 'blake2s.SALT_SIZE'
764) <DataObjStr:: :py:data:`hashlib.hash.block_size`> with module 'hashlib' has no attribute 'hash.block_size'
765) <DataObjStr:: :py:method:`hashlib.hash.copy`> with module 'hashlib' has no attribute 'hash'
766) <DataObjStr:: :py:method:`hashlib.hash.digest`> with module 'hashlib' has no attribute 'hash'
767) <DataObjStr:: :py:data:`hashlib.hash.digest_size`> with module 'hashlib' has no attribute 'hash.digest_size'
768) <DataObjStr:: :py:method:`hashlib.hash.hexdigest`> with module 'hashlib' has no attribute 'hash'
769) <DataObjStr:: :py:attribute:`hashlib.hash.name`> with module 'hashlib' has no attribute 'hash'
770) <DataObjStr:: :py:method:`hashlib.hash.update`> with module 'hashlib' has no attribute 'hash'
771) <DataObjStr:: :py:method:`hashlib.shake.digest`> with module 'hashlib' has no attribute 'shake'
772) <DataObjStr:: :py:method:`hashlib.shake.hexdigest`> with module 'hashlib' has no attribute 'shake'
773) <DataObjStr:: :py:data:`html.entities.codepoint2name`> with module 'html' has no attribute 'entities.codepoint2name'
774) <DataObjStr:: :py:data:`html.entities.entitydefs`> with module 'html' has no attribute 'entities.entitydefs'
775) <DataObjStr:: :py:data:`html.entities.html5`> with module 'html' has no attribute 'entities.html5'
776) <DataObjStr:: :py:data:`html.entities.name2codepoint`> with module 'html' has no attribute 'entities.name2codepoint'
777) <DataObjStr:: :py:class:`html.parser.HTMLParser`> with module 'html' has no attribute 'parser.HTMLParser'
778) <DataObjStr:: :py:method:`html.parser.HTMLParser.close`> with module 'html' has no attribute 'parser.HTMLParser'
779) <DataObjStr:: :py:method:`html.parser.HTMLParser.feed`> with module 'html' has no attribute 'parser.HTMLParser'
780) <DataObjStr:: :py:method:`html.parser.HTMLParser.get_starttag_text`> with module 'html' has no attribute 'parser.HTMLParser'
781) <DataObjStr:: :py:method:`html.parser.HTMLParser.getpos`> with module 'html' has no attribute 'parser.HTMLParser'
782) <DataObjStr:: :py:method:`html.parser.HTMLParser.handle_charref`> with module 'html' has no attribute 'parser.HTMLParser'
783) <DataObjStr:: :py:method:`html.parser.HTMLParser.handle_comment`> with module 'html' has no attribute 'parser.HTMLParser'
784) <DataObjStr:: :py:method:`html.parser.HTMLParser.handle_data`> with module 'html' has no attribute 'parser.HTMLParser'
785) <DataObjStr:: :py:method:`html.parser.HTMLParser.handle_decl`> with module 'html' has no attribute 'parser.HTMLParser'
786) <DataObjStr:: :py:method:`html.parser.HTMLParser.handle_endtag`> with module 'html' has no attribute 'parser.HTMLParser'
787) <DataObjStr:: :py:method:`html.parser.HTMLParser.handle_entityref`> with module 'html' has no attribute 'parser.HTMLParser'
788) <DataObjStr:: :py:method:`html.parser.HTMLParser.handle_pi`> with module 'html' has no attribute 'parser.HTMLParser'
789) <DataObjStr:: :py:method:`html.parser.HTMLParser.handle_startendtag`> with module 'html' has no attribute 'parser.HTMLParser'
790) <DataObjStr:: :py:method:`html.parser.HTMLParser.handle_starttag`> with module 'html' has no attribute 'parser.HTMLParser'
791) <DataObjStr:: :py:method:`html.parser.HTMLParser.reset`> with module 'html' has no attribute 'parser.HTMLParser'
792) <DataObjStr:: :py:method:`html.parser.HTMLParser.unknown_decl`> with module 'html' has no attribute 'parser.HTMLParser'
793) <DataObjStr:: :py:exception:`http.client.BadStatusLine`> with module 'http' has no attribute 'client.BadStatusLine'
794) <DataObjStr:: :py:exception:`http.client.CannotSendHeader`> with module 'http' has no attribute 'client.CannotSendHeader'
795) <DataObjStr:: :py:exception:`http.client.CannotSendRequest`> with module 'http' has no attribute 'client.CannotSendRequest'
796) <DataObjStr:: :py:class:`http.client.HTTPConnection`> with module 'http' has no attribute 'client.HTTPConnection'
797) <DataObjStr:: :py:attribute:`http.client.HTTPConnection.blocksize`> with module 'http' has no attribute 'client.HTTPConnection'
798) <DataObjStr:: :py:method:`http.client.HTTPConnection.close`> with module 'http' has no attribute 'client.HTTPConnection'
799) <DataObjStr:: :py:method:`http.client.HTTPConnection.connect`> with module 'http' has no attribute 'client.HTTPConnection'
800) <DataObjStr:: :py:method:`http.client.HTTPConnection.endheaders`> with module 'http' has no attribute 'client.HTTPConnection'
801) <DataObjStr:: :py:method:`http.client.HTTPConnection.getresponse`> with module 'http' has no attribute 'client.HTTPConnection'
802) <DataObjStr:: :py:method:`http.client.HTTPConnection.putheader`> with module 'http' has no attribute 'client.HTTPConnection'
803) <DataObjStr:: :py:method:`http.client.HTTPConnection.putrequest`> with module 'http' has no attribute 'client.HTTPConnection'
804) <DataObjStr:: :py:method:`http.client.HTTPConnection.request`> with module 'http' has no attribute 'client.HTTPConnection'
805) <DataObjStr:: :py:method:`http.client.HTTPConnection.send`> with module 'http' has no attribute 'client.HTTPConnection'
806) <DataObjStr:: :py:method:`http.client.HTTPConnection.set_debuglevel`> with module 'http' has no attribute 'client.HTTPConnection'
807) <DataObjStr:: :py:method:`http.client.HTTPConnection.set_tunnel`> with module 'http' has no attribute 'client.HTTPConnection'
808) <DataObjStr:: :py:exception:`http.client.HTTPException`> with module 'http' has no attribute 'client.HTTPException'
809) <DataObjStr:: :py:class:`http.client.HTTPResponse`> with module 'http' has no attribute 'client.HTTPResponse'
810) <DataObjStr:: :py:attribute:`http.client.HTTPResponse.closed`> with module 'http' has no attribute 'client.HTTPResponse'
811) <DataObjStr:: :py:attribute:`http.client.HTTPResponse.debuglevel`> with module 'http' has no attribute 'client.HTTPResponse'
812) <DataObjStr:: :py:method:`http.client.HTTPResponse.fileno`> with module 'http' has no attribute 'client.HTTPResponse'
813) <DataObjStr:: :py:method:`http.client.HTTPResponse.getheader`> with module 'http' has no attribute 'client.HTTPResponse'
814) <DataObjStr:: :py:method:`http.client.HTTPResponse.getheaders`> with module 'http' has no attribute 'client.HTTPResponse'
815) <DataObjStr:: :py:method:`http.client.HTTPResponse.getstatus`> with module 'http' has no attribute 'client.HTTPResponse'
816) <DataObjStr:: :py:method:`http.client.HTTPResponse.geturl`> with module 'http' has no attribute 'client.HTTPResponse'
817) <DataObjStr:: :py:attribute:`http.client.HTTPResponse.headers`> with module 'http' has no attribute 'client.HTTPResponse'
818) <DataObjStr:: :py:method:`http.client.HTTPResponse.info`> with module 'http' has no attribute 'client.HTTPResponse'
819) <DataObjStr:: :py:attribute:`http.client.HTTPResponse.msg`> with module 'http' has no attribute 'client.HTTPResponse'
820) <DataObjStr:: :py:method:`http.client.HTTPResponse.read`> with module 'http' has no attribute 'client.HTTPResponse'
821) <DataObjStr:: :py:method:`http.client.HTTPResponse.readinto`> with module 'http' has no attribute 'client.HTTPResponse'
822) <DataObjStr:: :py:attribute:`http.client.HTTPResponse.reason`> with module 'http' has no attribute 'client.HTTPResponse'
823) <DataObjStr:: :py:attribute:`http.client.HTTPResponse.status`> with module 'http' has no attribute 'client.HTTPResponse'
824) <DataObjStr:: :py:attribute:`http.client.HTTPResponse.url`> with module 'http' has no attribute 'client.HTTPResponse'
825) <DataObjStr:: :py:attribute:`http.client.HTTPResponse.version`> with module 'http' has no attribute 'client.HTTPResponse'
826) <DataObjStr:: :py:class:`http.client.HTTPSConnection`> with module 'http' has no attribute 'client.HTTPSConnection'
827) <DataObjStr:: :py:data:`http.client.HTTPS_PORT`> with module 'http' has no attribute 'client.HTTPS_PORT'
828) <DataObjStr:: :py:data:`http.client.HTTP_PORT`> with module 'http' has no attribute 'client.HTTP_PORT'
829) <DataObjStr:: :py:exception:`http.client.ImproperConnectionState`> with module 'http' has no attribute 'client.ImproperConnectionState'
830) <DataObjStr:: :py:exception:`http.client.IncompleteRead`> with module 'http' has no attribute 'client.IncompleteRead'
831) <DataObjStr:: :py:exception:`http.client.InvalidURL`> with module 'http' has no attribute 'client.InvalidURL'
832) <DataObjStr:: :py:exception:`http.client.LineTooLong`> with module 'http' has no attribute 'client.LineTooLong'
833) <DataObjStr:: :py:exception:`http.client.NotConnected`> with module 'http' has no attribute 'client.NotConnected'
834) <DataObjStr:: :py:exception:`http.client.RemoteDisconnected`> with module 'http' has no attribute 'client.RemoteDisconnected'
835) <DataObjStr:: :py:exception:`http.client.ResponseNotReady`> with module 'http' has no attribute 'client.ResponseNotReady'
836) <DataObjStr:: :py:exception:`http.client.UnimplementedFileMode`> with module 'http' has no attribute 'client.UnimplementedFileMode'
837) <DataObjStr:: :py:exception:`http.client.UnknownProtocol`> with module 'http' has no attribute 'client.UnknownProtocol'
838) <DataObjStr:: :py:exception:`http.client.UnknownTransferEncoding`> with module 'http' has no attribute 'client.UnknownTransferEncoding'
839) <DataObjStr:: :py:function:`http.client.parse_headers`> with module 'http' has no attribute 'client.parse_headers'
840) <DataObjStr:: :py:data:`http.client.responses`> with module 'http' has no attribute 'client.responses'
841) <DataObjStr:: :py:class:`http.cookiejar.Cookie`> with module 'http' has no attribute 'cookiejar.Cookie'
842) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.comment`> with module 'http' has no attribute 'cookiejar.Cookie'
843) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.comment_url`> with module 'http' has no attribute 'cookiejar.Cookie'
844) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.discard`> with module 'http' has no attribute 'cookiejar.Cookie'
845) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.domain_initial_dot`> with module 'http' has no attribute 'cookiejar.Cookie'
846) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.domain_specified`> with module 'http' has no attribute 'cookiejar.Cookie'
847) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.expires`> with module 'http' has no attribute 'cookiejar.Cookie'
848) <DataObjStr:: :py:method:`http.cookiejar.Cookie.get_nonstandard_attr`> with module 'http' has no attribute 'cookiejar.Cookie'
849) <DataObjStr:: :py:method:`http.cookiejar.Cookie.has_nonstandard_attr`> with module 'http' has no attribute 'cookiejar.Cookie'
850) <DataObjStr:: :py:method:`http.cookiejar.Cookie.is_expired`> with module 'http' has no attribute 'cookiejar.Cookie'
851) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.name`> with module 'http' has no attribute 'cookiejar.Cookie'
852) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.path`> with module 'http' has no attribute 'cookiejar.Cookie'
853) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.port`> with module 'http' has no attribute 'cookiejar.Cookie'
854) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.port_specified`> with module 'http' has no attribute 'cookiejar.Cookie'
855) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.rfc2109`> with module 'http' has no attribute 'cookiejar.Cookie'
856) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.secure`> with module 'http' has no attribute 'cookiejar.Cookie'
857) <DataObjStr:: :py:method:`http.cookiejar.Cookie.set_nonstandard_attr`> with module 'http' has no attribute 'cookiejar.Cookie'
858) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.value`> with module 'http' has no attribute 'cookiejar.Cookie'
859) <DataObjStr:: :py:attribute:`http.cookiejar.Cookie.version`> with module 'http' has no attribute 'cookiejar.Cookie'
860) <DataObjStr:: :py:class:`http.cookiejar.CookieJar`> with module 'http' has no attribute 'cookiejar.CookieJar'
861) <DataObjStr:: :py:method:`http.cookiejar.CookieJar.add_cookie_header`> with module 'http' has no attribute 'cookiejar.CookieJar'
862) <DataObjStr:: :py:method:`http.cookiejar.CookieJar.clear`> with module 'http' has no attribute 'cookiejar.CookieJar'
863) <DataObjStr:: :py:method:`http.cookiejar.CookieJar.clear_session_cookies`> with module 'http' has no attribute 'cookiejar.CookieJar'
864) <DataObjStr:: :py:method:`http.cookiejar.CookieJar.extract_cookies`> with module 'http' has no attribute 'cookiejar.CookieJar'
865) <DataObjStr:: :py:method:`http.cookiejar.CookieJar.make_cookies`> with module 'http' has no attribute 'cookiejar.CookieJar'
866) <DataObjStr:: :py:method:`http.cookiejar.CookieJar.set_cookie`> with module 'http' has no attribute 'cookiejar.CookieJar'
867) <DataObjStr:: :py:method:`http.cookiejar.CookieJar.set_cookie_if_ok`> with module 'http' has no attribute 'cookiejar.CookieJar'
868) <DataObjStr:: :py:method:`http.cookiejar.CookieJar.set_policy`> with module 'http' has no attribute 'cookiejar.CookieJar'
869) <DataObjStr:: :py:class:`http.cookiejar.CookiePolicy`> with module 'http' has no attribute 'cookiejar.CookiePolicy'
870) <DataObjStr:: :py:method:`http.cookiejar.CookiePolicy.domain_return_ok`> with module 'http' has no attribute 'cookiejar.CookiePolicy'
871) <DataObjStr:: :py:attribute:`http.cookiejar.CookiePolicy.hide_cookie2`> with module 'http' has no attribute 'cookiejar.CookiePolicy'
872) <DataObjStr:: :py:attribute:`http.cookiejar.CookiePolicy.netscape`> with module 'http' has no attribute 'cookiejar.CookiePolicy'
873) <DataObjStr:: :py:method:`http.cookiejar.CookiePolicy.path_return_ok`> with module 'http' has no attribute 'cookiejar.CookiePolicy'
874) <DataObjStr:: :py:method:`http.cookiejar.CookiePolicy.return_ok`> with module 'http' has no attribute 'cookiejar.CookiePolicy'
875) <DataObjStr:: :py:attribute:`http.cookiejar.CookiePolicy.rfc2965`> with module 'http' has no attribute 'cookiejar.CookiePolicy'
876) <DataObjStr:: :py:method:`http.cookiejar.CookiePolicy.set_ok`> with module 'http' has no attribute 'cookiejar.CookiePolicy'
877) <DataObjStr:: :py:class:`http.cookiejar.DefaultCookiePolicy`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
878) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.DomainLiberal`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
879) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.DomainRFC2965Match`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
880) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.DomainStrict`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
881) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.DomainStrictNoDots`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
882) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.DomainStrictNonDomain`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
883) <DataObjStr:: :py:method:`http.cookiejar.DefaultCookiePolicy.allowed_domains`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
884) <DataObjStr:: :py:method:`http.cookiejar.DefaultCookiePolicy.blocked_domains`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
885) <DataObjStr:: :py:method:`http.cookiejar.DefaultCookiePolicy.is_blocked`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
886) <DataObjStr:: :py:method:`http.cookiejar.DefaultCookiePolicy.is_not_allowed`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
887) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.rfc2109_as_netscape`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
888) <DataObjStr:: :py:method:`http.cookiejar.DefaultCookiePolicy.set_allowed_domains`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
889) <DataObjStr:: :py:method:`http.cookiejar.DefaultCookiePolicy.set_blocked_domains`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
890) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.strict_domain`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
891) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.strict_ns_domain`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
892) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.strict_ns_set_initial_dollar`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
893) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.strict_ns_set_path`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
894) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.strict_ns_unverifiable`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
895) <DataObjStr:: :py:attribute:`http.cookiejar.DefaultCookiePolicy.strict_rfc2965_unverifiable`> with module 'http' has no attribute 'cookiejar.DefaultCookiePolicy'
896) <DataObjStr:: :py:class:`http.cookiejar.FileCookieJar`> with module 'http' has no attribute 'cookiejar.FileCookieJar'
897) <DataObjStr:: :py:attribute:`http.cookiejar.FileCookieJar.delayload`> with module 'http' has no attribute 'cookiejar.FileCookieJar'
898) <DataObjStr:: :py:attribute:`http.cookiejar.FileCookieJar.filename`> with module 'http' has no attribute 'cookiejar.FileCookieJar'
899) <DataObjStr:: :py:method:`http.cookiejar.FileCookieJar.load`> with module 'http' has no attribute 'cookiejar.FileCookieJar'
900) <DataObjStr:: :py:method:`http.cookiejar.FileCookieJar.revert`> with module 'http' has no attribute 'cookiejar.FileCookieJar'
901) <DataObjStr:: :py:method:`http.cookiejar.FileCookieJar.save`> with module 'http' has no attribute 'cookiejar.FileCookieJar'
902) <DataObjStr:: :py:class:`http.cookiejar.LWPCookieJar`> with module 'http' has no attribute 'cookiejar.LWPCookieJar'
903) <DataObjStr:: :py:exception:`http.cookiejar.LoadError`> with module 'http' has no attribute 'cookiejar.LoadError'
904) <DataObjStr:: :py:class:`http.cookiejar.MozillaCookieJar`> with module 'http' has no attribute 'cookiejar.MozillaCookieJar'
905) <DataObjStr:: :py:class:`http.cookies.BaseCookie`> with module 'http' has no attribute 'cookies.BaseCookie'
906) <DataObjStr:: :py:method:`http.cookies.BaseCookie.js_output`> with module 'http' has no attribute 'cookies.BaseCookie'
907) <DataObjStr:: :py:method:`http.cookies.BaseCookie.load`> with module 'http' has no attribute 'cookies.BaseCookie'
908) <DataObjStr:: :py:method:`http.cookies.BaseCookie.output`> with module 'http' has no attribute 'cookies.BaseCookie'
909) <DataObjStr:: :py:method:`http.cookies.BaseCookie.value_decode`> with module 'http' has no attribute 'cookies.BaseCookie'
910) <DataObjStr:: :py:method:`http.cookies.BaseCookie.value_encode`> with module 'http' has no attribute 'cookies.BaseCookie'
911) <DataObjStr:: :py:exception:`http.cookies.CookieError`> with module 'http' has no attribute 'cookies.CookieError'
912) <DataObjStr:: :py:class:`http.cookies.Morsel`> with module 'http' has no attribute 'cookies.Morsel'
913) <DataObjStr:: :py:method:`http.cookies.Morsel.OutputString`> with module 'http' has no attribute 'cookies.Morsel'
914) <DataObjStr:: :py:attribute:`http.cookies.Morsel.coded_value`> with module 'http' has no attribute 'cookies.Morsel'
915) <DataObjStr:: :py:method:`http.cookies.Morsel.copy`> with module 'http' has no attribute 'cookies.Morsel'
916) <DataObjStr:: :py:method:`http.cookies.Morsel.isReservedKey`> with module 'http' has no attribute 'cookies.Morsel'
917) <DataObjStr:: :py:method:`http.cookies.Morsel.js_output`> with module 'http' has no attribute 'cookies.Morsel'
918) <DataObjStr:: :py:attribute:`http.cookies.Morsel.key`> with module 'http' has no attribute 'cookies.Morsel'
919) <DataObjStr:: :py:method:`http.cookies.Morsel.output`> with module 'http' has no attribute 'cookies.Morsel'
920) <DataObjStr:: :py:method:`http.cookies.Morsel.set`> with module 'http' has no attribute 'cookies.Morsel'
921) <DataObjStr:: :py:method:`http.cookies.Morsel.setdefault`> with module 'http' has no attribute 'cookies.Morsel'
922) <DataObjStr:: :py:method:`http.cookies.Morsel.update`> with module 'http' has no attribute 'cookies.Morsel'
923) <DataObjStr:: :py:attribute:`http.cookies.Morsel.value`> with module 'http' has no attribute 'cookies.Morsel'
924) <DataObjStr:: :py:class:`http.cookies.SimpleCookie`> with module 'http' has no attribute 'cookies.SimpleCookie'
925) <DataObjStr:: :py:class:`http.server.BaseHTTPRequestHandler`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
926) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.MessageClass`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
927) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.address_string`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
928) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.client_address`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
929) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.close_connection`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
930) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.command`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
931) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.date_time_string`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
932) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.end_headers`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
933) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.error_content_type`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
934) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.error_message_format`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
935) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.flush_headers`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
936) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.handle`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
937) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.handle_expect_100`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
938) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.handle_one_request`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
939) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.headers`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
940) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.log_date_time_string`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
941) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.log_error`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
942) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.log_message`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
943) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.log_request`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
944) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.path`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
945) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.protocol_version`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
946) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.request_version`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
947) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.requestline`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
948) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.responses`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
949) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.rfile`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
950) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.send_error`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
951) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.send_header`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
952) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.send_response`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
953) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.send_response_only`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
954) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.server`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
955) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.server_version`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
956) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.sys_version`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
957) <DataObjStr:: :py:method:`http.server.BaseHTTPRequestHandler.version_string`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
958) <DataObjStr:: :py:attribute:`http.server.BaseHTTPRequestHandler.wfile`> with module 'http' has no attribute 'server.BaseHTTPRequestHandler'
959) <DataObjStr:: :py:class:`http.server.CGIHTTPRequestHandler`> with module 'http' has no attribute 'server.CGIHTTPRequestHandler'
960) <DataObjStr:: :py:attribute:`http.server.CGIHTTPRequestHandler.cgi_directories`> with module 'http' has no attribute 'server.CGIHTTPRequestHandler'
961) <DataObjStr:: :py:method:`http.server.CGIHTTPRequestHandler.do_POST`> with module 'http' has no attribute 'server.CGIHTTPRequestHandler'
962) <DataObjStr:: :py:class:`http.server.HTTPServer`> with module 'http' has no attribute 'server.HTTPServer'
963) <DataObjStr:: :py:class:`http.server.SimpleHTTPRequestHandler`> with module 'http' has no attribute 'server.SimpleHTTPRequestHandler'
964) <DataObjStr:: :py:method:`http.server.SimpleHTTPRequestHandler.do_GET`> with module 'http' has no attribute 'server.SimpleHTTPRequestHandler'
965) <DataObjStr:: :py:method:`http.server.SimpleHTTPRequestHandler.do_HEAD`> with module 'http' has no attribute 'server.SimpleHTTPRequestHandler'
966) <DataObjStr:: :py:attribute:`http.server.SimpleHTTPRequestHandler.extensions_map`> with module 'http' has no attribute 'server.SimpleHTTPRequestHandler'
967) <DataObjStr:: :py:attribute:`http.server.SimpleHTTPRequestHandler.server_version`> with module 'http' has no attribute 'server.SimpleHTTPRequestHandler'
968) <DataObjStr:: :py:class:`http.server.ThreadingHTTPServer`> with module 'http' has no attribute 'server.ThreadingHTTPServer'
969) <DataObjStr:: :py:attribute:`imaplib.IMAP4.PROTOCOL_VERSION`> with type object 'IMAP4' has no attribute 'PROTOCOL_VERSION'
970) <DataObjStr:: :py:exception:`imaplib.IMAP4.abort`> with module 'imaplib' has no attribute 'IMAP4.abort'
971) <DataObjStr:: :py:attribute:`imaplib.IMAP4.debug`> with type object 'IMAP4' has no attribute 'debug'
972) <DataObjStr:: :py:exception:`imaplib.IMAP4.error`> with module 'imaplib' has no attribute 'IMAP4.error'
973) <DataObjStr:: :py:exception:`imaplib.IMAP4.readonly`> with module 'imaplib' has no attribute 'IMAP4.readonly'
974) <DataObjStr:: :py:attribute:`imaplib.IMAP4.utf8_enabled`> with type object 'IMAP4' has no attribute 'utf8_enabled'
975) <DataObjStr:: :py:class:`importlib.abc.ExecutionLoader`> with module 'importlib' has no attribute 'abc.ExecutionLoader'
976) <DataObjStr:: :py:method:`importlib.abc.ExecutionLoader.get_filename`> with module 'importlib' has no attribute 'abc.ExecutionLoader'
977) <DataObjStr:: :py:class:`importlib.abc.FileLoader`> with module 'importlib' has no attribute 'abc.FileLoader'
978) <DataObjStr:: :py:method:`importlib.abc.FileLoader.get_data`> with module 'importlib' has no attribute 'abc.FileLoader'
979) <DataObjStr:: :py:method:`importlib.abc.FileLoader.get_filename`> with module 'importlib' has no attribute 'abc.FileLoader'
980) <DataObjStr:: :py:method:`importlib.abc.FileLoader.load_module`> with module 'importlib' has no attribute 'abc.FileLoader'
981) <DataObjStr:: :py:attribute:`importlib.abc.FileLoader.name`> with module 'importlib' has no attribute 'abc.FileLoader'
982) <DataObjStr:: :py:attribute:`importlib.abc.FileLoader.path`> with module 'importlib' has no attribute 'abc.FileLoader'
983) <DataObjStr:: :py:class:`importlib.abc.Finder`> with module 'importlib' has no attribute 'abc.Finder'
984) <DataObjStr:: :py:method:`importlib.abc.Finder.find_module`> with module 'importlib' has no attribute 'abc.Finder'
985) <DataObjStr:: :py:class:`importlib.abc.InspectLoader`> with module 'importlib' has no attribute 'abc.InspectLoader'
986) <DataObjStr:: :py:method:`importlib.abc.InspectLoader.exec_module`> with module 'importlib' has no attribute 'abc.InspectLoader'
987) <DataObjStr:: :py:method:`importlib.abc.InspectLoader.get_code`> with module 'importlib' has no attribute 'abc.InspectLoader'
988) <DataObjStr:: :py:method:`importlib.abc.InspectLoader.get_source`> with module 'importlib' has no attribute 'abc.InspectLoader'
989) <DataObjStr:: :py:method:`importlib.abc.InspectLoader.is_package`> with module 'importlib' has no attribute 'abc.InspectLoader'
990) <DataObjStr:: :py:method:`importlib.abc.InspectLoader.load_module`> with module 'importlib' has no attribute 'abc.InspectLoader'
991) <DataObjStr:: :py:method:`importlib.abc.InspectLoader.source_to_code`> with module 'importlib' has no attribute 'abc.InspectLoader'
992) <DataObjStr:: :py:class:`importlib.abc.Loader`> with module 'importlib' has no attribute 'abc.Loader'
993) <DataObjStr:: :py:method:`importlib.abc.Loader.create_module`> with module 'importlib' has no attribute 'abc.Loader'
994) <DataObjStr:: :py:method:`importlib.abc.Loader.exec_module`> with module 'importlib' has no attribute 'abc.Loader'
995) <DataObjStr:: :py:method:`importlib.abc.Loader.load_module`> with module 'importlib' has no attribute 'abc.Loader'
996) <DataObjStr:: :py:method:`importlib.abc.Loader.module_repr`> with module 'importlib' has no attribute 'abc.Loader'
997) <DataObjStr:: :py:class:`importlib.abc.MetaPathFinder`> with module 'importlib' has no attribute 'abc.MetaPathFinder'
998) <DataObjStr:: :py:method:`importlib.abc.MetaPathFinder.find_module`> with module 'importlib' has no attribute 'abc.MetaPathFinder'
999) <DataObjStr:: :py:method:`importlib.abc.MetaPathFinder.find_spec`> with module 'importlib' has no attribute 'abc.MetaPathFinder'
1000) <DataObjStr:: :py:method:`importlib.abc.MetaPathFinder.invalidate_caches`> with module 'importlib' has no attribute 'abc.MetaPathFinder'
1001) <DataObjStr:: :py:class:`importlib.abc.PathEntryFinder`> with module 'importlib' has no attribute 'abc.PathEntryFinder'
1002) <DataObjStr:: :py:method:`importlib.abc.PathEntryFinder.find_loader`> with module 'importlib' has no attribute 'abc.PathEntryFinder'
1003) <DataObjStr:: :py:method:`importlib.abc.PathEntryFinder.find_module`> with module 'importlib' has no attribute 'abc.PathEntryFinder'
1004) <DataObjStr:: :py:method:`importlib.abc.PathEntryFinder.find_spec`> with module 'importlib' has no attribute 'abc.PathEntryFinder'
1005) <DataObjStr:: :py:method:`importlib.abc.PathEntryFinder.invalidate_caches`> with module 'importlib' has no attribute 'abc.PathEntryFinder'
1006) <DataObjStr:: :py:class:`importlib.abc.ResourceLoader`> with module 'importlib' has no attribute 'abc.ResourceLoader'
1007) <DataObjStr:: :py:method:`importlib.abc.ResourceLoader.get_data`> with module 'importlib' has no attribute 'abc.ResourceLoader'
1008) <DataObjStr:: :py:class:`importlib.abc.ResourceReader`> with module 'importlib' has no attribute 'abc.ResourceReader'
1009) <DataObjStr:: :py:method:`importlib.abc.ResourceReader.contents`> with module 'importlib' has no attribute 'abc.ResourceReader'
1010) <DataObjStr:: :py:method:`importlib.abc.ResourceReader.is_resource`> with module 'importlib' has no attribute 'abc.ResourceReader'
1011) <DataObjStr:: :py:method:`importlib.abc.ResourceReader.open_resource`> with module 'importlib' has no attribute 'abc.ResourceReader'
1012) <DataObjStr:: :py:method:`importlib.abc.ResourceReader.resource_path`> with module 'importlib' has no attribute 'abc.ResourceReader'
1013) <DataObjStr:: :py:class:`importlib.abc.SourceLoader`> with module 'importlib' has no attribute 'abc.SourceLoader'
1014) <DataObjStr:: :py:method:`importlib.abc.SourceLoader.exec_module`> with module 'importlib' has no attribute 'abc.SourceLoader'
1015) <DataObjStr:: :py:method:`importlib.abc.SourceLoader.get_code`> with module 'importlib' has no attribute 'abc.SourceLoader'
1016) <DataObjStr:: :py:method:`importlib.abc.SourceLoader.get_source`> with module 'importlib' has no attribute 'abc.SourceLoader'
1017) <DataObjStr:: :py:method:`importlib.abc.SourceLoader.is_package`> with module 'importlib' has no attribute 'abc.SourceLoader'
1018) <DataObjStr:: :py:method:`importlib.abc.SourceLoader.load_module`> with module 'importlib' has no attribute 'abc.SourceLoader'
1019) <DataObjStr:: :py:method:`importlib.abc.SourceLoader.path_mtime`> with module 'importlib' has no attribute 'abc.SourceLoader'
1020) <DataObjStr:: :py:method:`importlib.abc.SourceLoader.path_stats`> with module 'importlib' has no attribute 'abc.SourceLoader'
1021) <DataObjStr:: :py:method:`importlib.abc.SourceLoader.set_data`> with module 'importlib' has no attribute 'abc.SourceLoader'
1022) <DataObjStr:: :py:class:`importlib.abc.Traversable`> with module 'importlib' has no attribute 'abc.Traversable'
1023) <DataObjStr:: :py:class:`importlib.abc.TraversableResources`> with module 'importlib' has no attribute 'abc.TraversableResources'
1024) <DataObjStr:: :py:class:`importlib.machinery.BuiltinImporter`> with module 'importlib' has no attribute 'machinery.BuiltinImporter'
1025) <DataObjStr:: :py:class:`importlib.machinery.ExtensionFileLoader`> with module 'importlib' has no attribute 'machinery.ExtensionFileLoader'
1026) <DataObjStr:: :py:method:`importlib.machinery.ExtensionFileLoader.create_module`> with module 'importlib' has no attribute 'machinery.ExtensionFileLoader'
1027) <DataObjStr:: :py:method:`importlib.machinery.ExtensionFileLoader.exec_module`> with module 'importlib' has no attribute 'machinery.ExtensionFileLoader'
1028) <DataObjStr:: :py:method:`importlib.machinery.ExtensionFileLoader.get_code`> with module 'importlib' has no attribute 'machinery.ExtensionFileLoader'
1029) <DataObjStr:: :py:method:`importlib.machinery.ExtensionFileLoader.get_filename`> with module 'importlib' has no attribute 'machinery.ExtensionFileLoader'
1030) <DataObjStr:: :py:method:`importlib.machinery.ExtensionFileLoader.get_source`> with module 'importlib' has no attribute 'machinery.ExtensionFileLoader'
1031) <DataObjStr:: :py:method:`importlib.machinery.ExtensionFileLoader.is_package`> with module 'importlib' has no attribute 'machinery.ExtensionFileLoader'
1032) <DataObjStr:: :py:attribute:`importlib.machinery.ExtensionFileLoader.name`> with module 'importlib' has no attribute 'machinery.ExtensionFileLoader'
1033) <DataObjStr:: :py:attribute:`importlib.machinery.ExtensionFileLoader.path`> with module 'importlib' has no attribute 'machinery.ExtensionFileLoader'
1034) <DataObjStr:: :py:class:`importlib.machinery.FileFinder`> with module 'importlib' has no attribute 'machinery.FileFinder'
1035) <DataObjStr:: :py:method:`importlib.machinery.FileFinder.find_loader`> with module 'importlib' has no attribute 'machinery.FileFinder'
1036) <DataObjStr:: :py:method:`importlib.machinery.FileFinder.find_spec`> with module 'importlib' has no attribute 'machinery.FileFinder'
1037) <DataObjStr:: :py:method:`importlib.machinery.FileFinder.invalidate_caches`> with module 'importlib' has no attribute 'machinery.FileFinder'
1038) <DataObjStr:: :py:attribute:`importlib.machinery.FileFinder.path`> with module 'importlib' has no attribute 'machinery.FileFinder'
1039) <DataObjStr:: :py:method:`importlib.machinery.FileFinder.path_hook`> with module 'importlib' has no attribute 'machinery.FileFinder'
1040) <DataObjStr:: :py:class:`importlib.machinery.FrozenImporter`> with module 'importlib' has no attribute 'machinery.FrozenImporter'
1041) <DataObjStr:: :py:class:`importlib.machinery.ModuleSpec`> with module 'importlib' has no attribute 'machinery.ModuleSpec'
1042) <DataObjStr:: :py:attribute:`importlib.machinery.ModuleSpec.cached`> with module 'importlib' has no attribute 'machinery.ModuleSpec'
1043) <DataObjStr:: :py:attribute:`importlib.machinery.ModuleSpec.has_location`> with module 'importlib' has no attribute 'machinery.ModuleSpec'
1044) <DataObjStr:: :py:attribute:`importlib.machinery.ModuleSpec.loader`> with module 'importlib' has no attribute 'machinery.ModuleSpec'
1045) <DataObjStr:: :py:attribute:`importlib.machinery.ModuleSpec.loader_state`> with module 'importlib' has no attribute 'machinery.ModuleSpec'
1046) <DataObjStr:: :py:attribute:`importlib.machinery.ModuleSpec.name`> with module 'importlib' has no attribute 'machinery.ModuleSpec'
1047) <DataObjStr:: :py:attribute:`importlib.machinery.ModuleSpec.origin`> with module 'importlib' has no attribute 'machinery.ModuleSpec'
1048) <DataObjStr:: :py:attribute:`importlib.machinery.ModuleSpec.parent`> with module 'importlib' has no attribute 'machinery.ModuleSpec'
1049) <DataObjStr:: :py:attribute:`importlib.machinery.ModuleSpec.submodule_search_locations`> with module 'importlib' has no attribute 'machinery.ModuleSpec'
1050) <DataObjStr:: :py:class:`importlib.machinery.PathFinder`> with module 'importlib' has no attribute 'machinery.PathFinder'
1051) <DataObjStr:: :py:method:`importlib.machinery.PathFinder.find_module`> with module 'importlib' has no attribute 'machinery.PathFinder'
1052) <DataObjStr:: :py:method:`importlib.machinery.PathFinder.find_spec`> with module 'importlib' has no attribute 'machinery.PathFinder'
1053) <DataObjStr:: :py:method:`importlib.machinery.PathFinder.invalidate_caches`> with module 'importlib' has no attribute 'machinery.PathFinder'
1054) <DataObjStr:: :py:class:`importlib.machinery.SourceFileLoader`> with module 'importlib' has no attribute 'machinery.SourceFileLoader'
1055) <DataObjStr:: :py:method:`importlib.machinery.SourceFileLoader.is_package`> with module 'importlib' has no attribute 'machinery.SourceFileLoader'
1056) <DataObjStr:: :py:method:`importlib.machinery.SourceFileLoader.load_module`> with module 'importlib' has no attribute 'machinery.SourceFileLoader'
1057) <DataObjStr:: :py:attribute:`importlib.machinery.SourceFileLoader.name`> with module 'importlib' has no attribute 'machinery.SourceFileLoader'
1058) <DataObjStr:: :py:attribute:`importlib.machinery.SourceFileLoader.path`> with module 'importlib' has no attribute 'machinery.SourceFileLoader'
1059) <DataObjStr:: :py:method:`importlib.machinery.SourceFileLoader.path_stats`> with module 'importlib' has no attribute 'machinery.SourceFileLoader'
1060) <DataObjStr:: :py:method:`importlib.machinery.SourceFileLoader.set_data`> with module 'importlib' has no attribute 'machinery.SourceFileLoader'
1061) <DataObjStr:: :py:class:`importlib.machinery.SourcelessFileLoader`> with module 'importlib' has no attribute 'machinery.SourcelessFileLoader'
1062) <DataObjStr:: :py:method:`importlib.machinery.SourcelessFileLoader.get_code`> with module 'importlib' has no attribute 'machinery.SourcelessFileLoader'
1063) <DataObjStr:: :py:method:`importlib.machinery.SourcelessFileLoader.get_source`> with module 'importlib' has no attribute 'machinery.SourcelessFileLoader'
1064) <DataObjStr:: :py:method:`importlib.machinery.SourcelessFileLoader.is_package`> with module 'importlib' has no attribute 'machinery.SourcelessFileLoader'
1065) <DataObjStr:: :py:method:`importlib.machinery.SourcelessFileLoader.load_module`> with module 'importlib' has no attribute 'machinery.SourcelessFileLoader'
1066) <DataObjStr:: :py:attribute:`importlib.machinery.SourcelessFileLoader.name`> with module 'importlib' has no attribute 'machinery.SourcelessFileLoader'
1067) <DataObjStr:: :py:attribute:`importlib.machinery.SourcelessFileLoader.path`> with module 'importlib' has no attribute 'machinery.SourcelessFileLoader'
1068) <DataObjStr:: :py:class:`importlib.machinery.WindowsRegistryFinder`> with module 'importlib' has no attribute 'machinery.WindowsRegistryFinder'
1069) <DataObjStr:: :py:function:`importlib.machinery.all_suffixes`> with module 'importlib' has no attribute 'machinery.all_suffixes'
1070) <DataObjStr:: :py:data:`importlib.resources.Package`> with module 'importlib' has no attribute 'resources.Package'
1071) <DataObjStr:: :py:data:`importlib.resources.Resource`> with module 'importlib' has no attribute 'resources.Resource'
1072) <DataObjStr:: :py:function:`importlib.resources.as_file`> with module 'importlib' has no attribute 'resources.as_file'
1073) <DataObjStr:: :py:function:`importlib.resources.contents`> with module 'importlib' has no attribute 'resources.contents'
1074) <DataObjStr:: :py:function:`importlib.resources.files`> with module 'importlib' has no attribute 'resources.files'
1075) <DataObjStr:: :py:function:`importlib.resources.is_resource`> with module 'importlib' has no attribute 'resources.is_resource'
1076) <DataObjStr:: :py:function:`importlib.resources.open_binary`> with module 'importlib' has no attribute 'resources.open_binary'
1077) <DataObjStr:: :py:function:`importlib.resources.open_text`> with module 'importlib' has no attribute 'resources.open_text'
1078) <DataObjStr:: :py:function:`importlib.resources.path`> with module 'importlib' has no attribute 'resources.path'
1079) <DataObjStr:: :py:function:`importlib.resources.read_binary`> with module 'importlib' has no attribute 'resources.read_binary'
1080) <DataObjStr:: :py:function:`importlib.resources.read_text`> with module 'importlib' has no attribute 'resources.read_text'
1081) <DataObjStr:: :py:class:`importlib.util.LazyLoader`> with module 'importlib' has no attribute 'util.LazyLoader'
1082) <DataObjStr:: :py:method:`importlib.util.LazyLoader.factory`> with module 'importlib' has no attribute 'util.LazyLoader'
1083) <DataObjStr:: :py:function:`importlib.util.cache_from_source`> with module 'importlib' has no attribute 'util.cache_from_source'
1084) <DataObjStr:: :py:function:`importlib.util.decode_source`> with module 'importlib' has no attribute 'util.decode_source'
1085) <DataObjStr:: :py:function:`importlib.util.find_spec`> with module 'importlib' has no attribute 'util.find_spec'
1086) <DataObjStr:: :py:function:`importlib.util.module_for_loader`> with module 'importlib' has no attribute 'util.module_for_loader'
1087) <DataObjStr:: :py:function:`importlib.util.module_from_spec`> with module 'importlib' has no attribute 'util.module_from_spec'
1088) <DataObjStr:: :py:function:`importlib.util.resolve_name`> with module 'importlib' has no attribute 'util.resolve_name'
1089) <DataObjStr:: :py:function:`importlib.util.set_loader`> with module 'importlib' has no attribute 'util.set_loader'
1090) <DataObjStr:: :py:function:`importlib.util.set_package`> with module 'importlib' has no attribute 'util.set_package'
1091) <DataObjStr:: :py:function:`importlib.util.source_from_cache`> with module 'importlib' has no attribute 'util.source_from_cache'
1092) <DataObjStr:: :py:function:`importlib.util.source_hash`> with module 'importlib' has no attribute 'util.source_hash'
1093) <DataObjStr:: :py:function:`importlib.util.spec_from_file_location`> with module 'importlib' has no attribute 'util.spec_from_file_location'
1094) <DataObjStr:: :py:function:`importlib.util.spec_from_loader`> with module 'importlib' has no attribute 'util.spec_from_loader'
1095) <DataObjStr:: :py:attribute:`inspect.Parameter.kind.description`> with module 'inspect' has no attribute 'Parameter.kind'
1096) <DataObjStr:: :py:attribute:`instance.__class__`> with module 'builtins' has no attribute 'instance'
1097) <DataObjStr:: :py:attribute:`io.BufferedIOBase.raw`> with type object 'BufferedIOBase' has no attribute 'raw'
1098) <DataObjStr:: :py:attribute:`io.FileIO.name`> with type object '_io.FileIO' has no attribute 'name'
1099) <DataObjStr:: :py:attribute:`io.TextIOBase.buffer`> with type object 'TextIOBase' has no attribute 'buffer'
1100) <DataObjStr:: :py:attribute:`ipaddress.IPv4Interface.network`> with type object 'IPv4Interface' has no attribute 'network'
1101) <DataObjStr:: :py:attribute:`ipaddress.IPv4Network.netmask`> with type object 'IPv4Network' has no attribute 'netmask'
1102) <DataObjStr:: :py:attribute:`ipaddress.IPv4Network.network_address`> with type object 'IPv4Network' has no attribute 'network_address'
1103) <DataObjStr:: :py:attribute:`ipaddress.IPv6Interface.network`> with type object 'IPv6Interface' has no attribute 'network'
1104) <DataObjStr:: :py:attribute:`ipaddress.IPv6Network.netmask`> with type object 'IPv6Network' has no attribute 'netmask'
1105) <DataObjStr:: :py:attribute:`ipaddress.IPv6Network.network_address`> with type object 'IPv6Network' has no attribute 'network_address'
1106) <DataObjStr:: :py:method:`iterator.__iter__`> with module 'builtins' has no attribute 'iterator'
1107) <DataObjStr:: :py:method:`iterator.__next__`> with module 'builtins' has no attribute 'iterator'
1108) <DataObjStr:: :py:attribute:`json.JSONDecodeError.colno`> with type object 'JSONDecodeError' has no attribute 'colno'
1109) <DataObjStr:: :py:attribute:`json.JSONDecodeError.doc`> with type object 'JSONDecodeError' has no attribute 'doc'
1110) <DataObjStr:: :py:attribute:`json.JSONDecodeError.lineno`> with type object 'JSONDecodeError' has no attribute 'lineno'
1111) <DataObjStr:: :py:attribute:`json.JSONDecodeError.msg`> with type object 'JSONDecodeError' has no attribute 'msg'
1112) <DataObjStr:: :py:attribute:`json.JSONDecodeError.pos`> with type object 'JSONDecodeError' has no attribute 'pos'
1113) <DataObjStr:: :py:attribute:`logging.Logger.propagate`> with type object 'Logger' has no attribute 'propagate'
1114) <DataObjStr:: :py:function:`logging.config.dictConfig`> with module 'logging' has no attribute 'config.dictConfig'
1115) <DataObjStr:: :py:function:`logging.config.fileConfig`> with module 'logging' has no attribute 'config.fileConfig'
1116) <DataObjStr:: :py:function:`logging.config.listen`> with module 'logging' has no attribute 'config.listen'
1117) <DataObjStr:: :py:function:`logging.config.stopListening`> with module 'logging' has no attribute 'config.stopListening'
1118) <DataObjStr:: :py:class:`logging.handlers.BaseRotatingHandler`> with module 'logging' has no attribute 'handlers.BaseRotatingHandler'
1119) <DataObjStr:: :py:attribute:`logging.handlers.BaseRotatingHandler.namer`> with module 'logging' has no attribute 'handlers.BaseRotatingHandler'
1120) <DataObjStr:: :py:method:`logging.handlers.BaseRotatingHandler.rotate`> with module 'logging' has no attribute 'handlers.BaseRotatingHandler'
1121) <DataObjStr:: :py:method:`logging.handlers.BaseRotatingHandler.rotation_filename`> with module 'logging' has no attribute 'handlers.BaseRotatingHandler'
1122) <DataObjStr:: :py:attribute:`logging.handlers.BaseRotatingHandler.rotator`> with module 'logging' has no attribute 'handlers.BaseRotatingHandler'
1123) <DataObjStr:: :py:class:`logging.handlers.BufferingHandler`> with module 'logging' has no attribute 'handlers.BufferingHandler'
1124) <DataObjStr:: :py:method:`logging.handlers.BufferingHandler.emit`> with module 'logging' has no attribute 'handlers.BufferingHandler'
1125) <DataObjStr:: :py:method:`logging.handlers.BufferingHandler.flush`> with module 'logging' has no attribute 'handlers.BufferingHandler'
1126) <DataObjStr:: :py:method:`logging.handlers.BufferingHandler.shouldFlush`> with module 'logging' has no attribute 'handlers.BufferingHandler'
1127) <DataObjStr:: :py:class:`logging.handlers.DatagramHandler`> with module 'logging' has no attribute 'handlers.DatagramHandler'
1128) <DataObjStr:: :py:method:`logging.handlers.DatagramHandler.emit`> with module 'logging' has no attribute 'handlers.DatagramHandler'
1129) <DataObjStr:: :py:method:`logging.handlers.DatagramHandler.makeSocket`> with module 'logging' has no attribute 'handlers.DatagramHandler'
1130) <DataObjStr:: :py:method:`logging.handlers.DatagramHandler.send`> with module 'logging' has no attribute 'handlers.DatagramHandler'
1131) <DataObjStr:: :py:class:`logging.handlers.HTTPHandler`> with module 'logging' has no attribute 'handlers.HTTPHandler'
1132) <DataObjStr:: :py:method:`logging.handlers.HTTPHandler.emit`> with module 'logging' has no attribute 'handlers.HTTPHandler'
1133) <DataObjStr:: :py:method:`logging.handlers.HTTPHandler.mapLogRecord`> with module 'logging' has no attribute 'handlers.HTTPHandler'
1134) <DataObjStr:: :py:class:`logging.handlers.MemoryHandler`> with module 'logging' has no attribute 'handlers.MemoryHandler'
1135) <DataObjStr:: :py:method:`logging.handlers.MemoryHandler.close`> with module 'logging' has no attribute 'handlers.MemoryHandler'
1136) <DataObjStr:: :py:method:`logging.handlers.MemoryHandler.flush`> with module 'logging' has no attribute 'handlers.MemoryHandler'
1137) <DataObjStr:: :py:method:`logging.handlers.MemoryHandler.setTarget`> with module 'logging' has no attribute 'handlers.MemoryHandler'
1138) <DataObjStr:: :py:method:`logging.handlers.MemoryHandler.shouldFlush`> with module 'logging' has no attribute 'handlers.MemoryHandler'
1139) <DataObjStr:: :py:class:`logging.handlers.NTEventLogHandler`> with module 'logging' has no attribute 'handlers.NTEventLogHandler'
1140) <DataObjStr:: :py:method:`logging.handlers.NTEventLogHandler.close`> with module 'logging' has no attribute 'handlers.NTEventLogHandler'
1141) <DataObjStr:: :py:method:`logging.handlers.NTEventLogHandler.emit`> with module 'logging' has no attribute 'handlers.NTEventLogHandler'
1142) <DataObjStr:: :py:method:`logging.handlers.NTEventLogHandler.getEventCategory`> with module 'logging' has no attribute 'handlers.NTEventLogHandler'
1143) <DataObjStr:: :py:method:`logging.handlers.NTEventLogHandler.getEventType`> with module 'logging' has no attribute 'handlers.NTEventLogHandler'
1144) <DataObjStr:: :py:method:`logging.handlers.NTEventLogHandler.getMessageID`> with module 'logging' has no attribute 'handlers.NTEventLogHandler'
1145) <DataObjStr:: :py:class:`logging.handlers.QueueHandler`> with module 'logging' has no attribute 'handlers.QueueHandler'
1146) <DataObjStr:: :py:method:`logging.handlers.QueueHandler.emit`> with module 'logging' has no attribute 'handlers.QueueHandler'
1147) <DataObjStr:: :py:method:`logging.handlers.QueueHandler.enqueue`> with module 'logging' has no attribute 'handlers.QueueHandler'
1148) <DataObjStr:: :py:method:`logging.handlers.QueueHandler.prepare`> with module 'logging' has no attribute 'handlers.QueueHandler'
1149) <DataObjStr:: :py:class:`logging.handlers.QueueListener`> with module 'logging' has no attribute 'handlers.QueueListener'
1150) <DataObjStr:: :py:method:`logging.handlers.QueueListener.dequeue`> with module 'logging' has no attribute 'handlers.QueueListener'
1151) <DataObjStr:: :py:method:`logging.handlers.QueueListener.enqueue_sentinel`> with module 'logging' has no attribute 'handlers.QueueListener'
1152) <DataObjStr:: :py:method:`logging.handlers.QueueListener.handle`> with module 'logging' has no attribute 'handlers.QueueListener'
1153) <DataObjStr:: :py:method:`logging.handlers.QueueListener.prepare`> with module 'logging' has no attribute 'handlers.QueueListener'
1154) <DataObjStr:: :py:method:`logging.handlers.QueueListener.start`> with module 'logging' has no attribute 'handlers.QueueListener'
1155) <DataObjStr:: :py:method:`logging.handlers.QueueListener.stop`> with module 'logging' has no attribute 'handlers.QueueListener'
1156) <DataObjStr:: :py:class:`logging.handlers.RotatingFileHandler`> with module 'logging' has no attribute 'handlers.RotatingFileHandler'
1157) <DataObjStr:: :py:method:`logging.handlers.RotatingFileHandler.doRollover`> with module 'logging' has no attribute 'handlers.RotatingFileHandler'
1158) <DataObjStr:: :py:method:`logging.handlers.RotatingFileHandler.emit`> with module 'logging' has no attribute 'handlers.RotatingFileHandler'
1159) <DataObjStr:: :py:class:`logging.handlers.SMTPHandler`> with module 'logging' has no attribute 'handlers.SMTPHandler'
1160) <DataObjStr:: :py:method:`logging.handlers.SMTPHandler.emit`> with module 'logging' has no attribute 'handlers.SMTPHandler'
1161) <DataObjStr:: :py:method:`logging.handlers.SMTPHandler.getSubject`> with module 'logging' has no attribute 'handlers.SMTPHandler'
1162) <DataObjStr:: :py:class:`logging.handlers.SocketHandler`> with module 'logging' has no attribute 'handlers.SocketHandler'
1163) <DataObjStr:: :py:method:`logging.handlers.SocketHandler.close`> with module 'logging' has no attribute 'handlers.SocketHandler'
1164) <DataObjStr:: :py:method:`logging.handlers.SocketHandler.createSocket`> with module 'logging' has no attribute 'handlers.SocketHandler'
1165) <DataObjStr:: :py:method:`logging.handlers.SocketHandler.emit`> with module 'logging' has no attribute 'handlers.SocketHandler'
1166) <DataObjStr:: :py:method:`logging.handlers.SocketHandler.handleError`> with module 'logging' has no attribute 'handlers.SocketHandler'
1167) <DataObjStr:: :py:method:`logging.handlers.SocketHandler.makePickle`> with module 'logging' has no attribute 'handlers.SocketHandler'
1168) <DataObjStr:: :py:method:`logging.handlers.SocketHandler.makeSocket`> with module 'logging' has no attribute 'handlers.SocketHandler'
1169) <DataObjStr:: :py:method:`logging.handlers.SocketHandler.send`> with module 'logging' has no attribute 'handlers.SocketHandler'
1170) <DataObjStr:: :py:class:`logging.handlers.SysLogHandler`> with module 'logging' has no attribute 'handlers.SysLogHandler'
1171) <DataObjStr:: :py:method:`logging.handlers.SysLogHandler.close`> with module 'logging' has no attribute 'handlers.SysLogHandler'
1172) <DataObjStr:: :py:method:`logging.handlers.SysLogHandler.emit`> with module 'logging' has no attribute 'handlers.SysLogHandler'
1173) <DataObjStr:: :py:method:`logging.handlers.SysLogHandler.encodePriority`> with module 'logging' has no attribute 'handlers.SysLogHandler'
1174) <DataObjStr:: :py:method:`logging.handlers.SysLogHandler.mapPriority`> with module 'logging' has no attribute 'handlers.SysLogHandler'
1175) <DataObjStr:: :py:class:`logging.handlers.TimedRotatingFileHandler`> with module 'logging' has no attribute 'handlers.TimedRotatingFileHandler'
1176) <DataObjStr:: :py:method:`logging.handlers.TimedRotatingFileHandler.doRollover`> with module 'logging' has no attribute 'handlers.TimedRotatingFileHandler'
1177) <DataObjStr:: :py:method:`logging.handlers.TimedRotatingFileHandler.emit`> with module 'logging' has no attribute 'handlers.TimedRotatingFileHandler'
1178) <DataObjStr:: :py:class:`logging.handlers.WatchedFileHandler`> with module 'logging' has no attribute 'handlers.WatchedFileHandler'
1179) <DataObjStr:: :py:method:`logging.handlers.WatchedFileHandler.emit`> with module 'logging' has no attribute 'handlers.WatchedFileHandler'
1180) <DataObjStr:: :py:method:`logging.handlers.WatchedFileHandler.reopenIfNeeded`> with module 'logging' has no attribute 'handlers.WatchedFileHandler'
1181) <DataObjStr:: :py:attribute:`logging.lastResort`> with module 'builtins' has no attribute 'logging'
1182) <DataObjStr:: :py:method:`logging.logging.Formatter.__init__`> with module 'logging' has no attribute 'logging.Formatter'
1183) <DataObjStr:: :py:attribute:`mimetypes.MimeTypes.encodings_map`> with type object 'MimeTypes' has no attribute 'encodings_map'
1184) <DataObjStr:: :py:attribute:`mimetypes.MimeTypes.suffix_map`> with type object 'MimeTypes' has no attribute 'suffix_map'
1185) <DataObjStr:: :py:attribute:`mimetypes.MimeTypes.types_map`> with type object 'MimeTypes' has no attribute 'types_map'
1186) <DataObjStr:: :py:attribute:`mimetypes.MimeTypes.types_map_inv`> with type object 'MimeTypes' has no attribute 'types_map_inv'
1187) <DataObjStr:: :py:data:`mmap.MADV_AUTOSYNC`> with module 'mmap' has no attribute 'MADV_AUTOSYNC'
1188) <DataObjStr:: :py:data:`mmap.MADV_CORE`> with module 'mmap' has no attribute 'MADV_CORE'
1189) <DataObjStr:: :py:data:`mmap.MADV_FREE_REUSABLE`> with module 'mmap' has no attribute 'MADV_FREE_REUSABLE'
1190) <DataObjStr:: :py:data:`mmap.MADV_FREE_REUSE`> with module 'mmap' has no attribute 'MADV_FREE_REUSE'
1191) <DataObjStr:: :py:data:`mmap.MADV_NOCORE`> with module 'mmap' has no attribute 'MADV_NOCORE'
1192) <DataObjStr:: :py:data:`mmap.MADV_NOSYNC`> with module 'mmap' has no attribute 'MADV_NOSYNC'
1193) <DataObjStr:: :py:data:`mmap.MADV_PROTECT`> with module 'mmap' has no attribute 'MADV_PROTECT'
1194) <DataObjStr:: :py:data:`mmap.MADV_SOFT_OFFLINE`> with module 'mmap' has no attribute 'MADV_SOFT_OFFLINE'
1195) <DataObjStr:: :py:attribute:`modulefinder.ModuleFinder.modules`> with type object 'ModuleFinder' has no attribute 'modules'
1196) <DataObjStr:: :py:module:`msilib`> with No module named 'msilib'
1197) <DataObjStr:: :py:class:`msilib.Binary`> with No module named 'msilib'
1198) <DataObjStr:: :py:class:`msilib.CAB`> with No module named 'msilib'
1199) <DataObjStr:: :py:method:`msilib.CAB.append`> with No module named 'msilib'
1200) <DataObjStr:: :py:method:`msilib.CAB.commit`> with No module named 'msilib'
1201) <DataObjStr:: :py:class:`msilib.Control`> with No module named 'msilib'
1202) <DataObjStr:: :py:method:`msilib.Control.condition`> with No module named 'msilib'
1203) <DataObjStr:: :py:method:`msilib.Control.event`> with No module named 'msilib'
1204) <DataObjStr:: :py:method:`msilib.Control.mapping`> with No module named 'msilib'
1205) <DataObjStr:: :py:function:`msilib.CreateRecord`> with No module named 'msilib'
1206) <DataObjStr:: :py:method:`msilib.Database.Close`> with No module named 'msilib'
1207) <DataObjStr:: :py:method:`msilib.Database.Commit`> with No module named 'msilib'
1208) <DataObjStr:: :py:method:`msilib.Database.GetSummaryInformation`> with No module named 'msilib'
1209) <DataObjStr:: :py:method:`msilib.Database.OpenView`> with No module named 'msilib'
1210) <DataObjStr:: :py:class:`msilib.Dialog`> with No module named 'msilib'
1211) <DataObjStr:: :py:method:`msilib.Dialog.bitmap`> with No module named 'msilib'
1212) <DataObjStr:: :py:method:`msilib.Dialog.checkbox`> with No module named 'msilib'
1213) <DataObjStr:: :py:method:`msilib.Dialog.control`> with No module named 'msilib'
1214) <DataObjStr:: :py:method:`msilib.Dialog.line`> with No module named 'msilib'
1215) <DataObjStr:: :py:method:`msilib.Dialog.pushbutton`> with No module named 'msilib'
1216) <DataObjStr:: :py:method:`msilib.Dialog.radiogroup`> with No module named 'msilib'
1217) <DataObjStr:: :py:method:`msilib.Dialog.text`> with No module named 'msilib'
1218) <DataObjStr:: :py:class:`msilib.Directory`> with No module named 'msilib'
1219) <DataObjStr:: :py:method:`msilib.Directory.add_file`> with No module named 'msilib'
1220) <DataObjStr:: :py:method:`msilib.Directory.glob`> with No module named 'msilib'
1221) <DataObjStr:: :py:method:`msilib.Directory.remove_pyc`> with No module named 'msilib'
1222) <DataObjStr:: :py:method:`msilib.Directory.start_component`> with No module named 'msilib'
1223) <DataObjStr:: :py:function:`msilib.FCICreate`> with No module named 'msilib'
1224) <DataObjStr:: :py:class:`msilib.Feature`> with No module named 'msilib'
1225) <DataObjStr:: :py:method:`msilib.Feature.set_current`> with No module named 'msilib'
1226) <DataObjStr:: :py:function:`msilib.OpenDatabase`> with No module named 'msilib'
1227) <DataObjStr:: :py:class:`msilib.RadioButtonGroup`> with No module named 'msilib'
1228) <DataObjStr:: :py:method:`msilib.RadioButtonGroup.add`> with No module named 'msilib'
1229) <DataObjStr:: :py:method:`msilib.Record.ClearData`> with No module named 'msilib'
1230) <DataObjStr:: :py:method:`msilib.Record.GetFieldCount`> with No module named 'msilib'
1231) <DataObjStr:: :py:method:`msilib.Record.GetInteger`> with No module named 'msilib'
1232) <DataObjStr:: :py:method:`msilib.Record.GetString`> with No module named 'msilib'
1233) <DataObjStr:: :py:method:`msilib.Record.SetInteger`> with No module named 'msilib'
1234) <DataObjStr:: :py:method:`msilib.Record.SetStream`> with No module named 'msilib'
1235) <DataObjStr:: :py:method:`msilib.Record.SetString`> with No module named 'msilib'
1236) <DataObjStr:: :py:method:`msilib.SummaryInformation.GetProperty`> with No module named 'msilib'
1237) <DataObjStr:: :py:method:`msilib.SummaryInformation.GetPropertyCount`> with No module named 'msilib'
1238) <DataObjStr:: :py:method:`msilib.SummaryInformation.Persist`> with No module named 'msilib'
1239) <DataObjStr:: :py:method:`msilib.SummaryInformation.SetProperty`> with No module named 'msilib'
1240) <DataObjStr:: :py:function:`msilib.UuidCreate`> with No module named 'msilib'
1241) <DataObjStr:: :py:method:`msilib.View.Close`> with No module named 'msilib'
1242) <DataObjStr:: :py:method:`msilib.View.Execute`> with No module named 'msilib'
1243) <DataObjStr:: :py:method:`msilib.View.Fetch`> with No module named 'msilib'
1244) <DataObjStr:: :py:method:`msilib.View.GetColumnInfo`> with No module named 'msilib'
1245) <DataObjStr:: :py:method:`msilib.View.Modify`> with No module named 'msilib'
1246) <DataObjStr:: :py:function:`msilib.add_data`> with No module named 'msilib'
1247) <DataObjStr:: :py:function:`msilib.add_stream`> with No module named 'msilib'
1248) <DataObjStr:: :py:function:`msilib.add_tables`> with No module named 'msilib'
1249) <DataObjStr:: :py:function:`msilib.gen_uuid`> with No module named 'msilib'
1250) <DataObjStr:: :py:function:`msilib.init_database`> with No module named 'msilib'
1251) <DataObjStr:: :py:data:`msilib.schema`> with No module named 'msilib'
1252) <DataObjStr:: :py:data:`msilib.sequence`> with No module named 'msilib'
1253) <DataObjStr:: :py:data:`msilib.text`> with No module named 'msilib'
1254) <DataObjStr:: :py:module:`msvcrt`> with No module named 'msvcrt'
1255) <DataObjStr:: :py:data:`msvcrt.LK_LOCK`> with No module named 'msvcrt'
1256) <DataObjStr:: :py:data:`msvcrt.LK_NBLCK`> with No module named 'msvcrt'
1257) <DataObjStr:: :py:data:`msvcrt.LK_NBRLCK`> with No module named 'msvcrt'
1258) <DataObjStr:: :py:data:`msvcrt.LK_RLCK`> with No module named 'msvcrt'
1259) <DataObjStr:: :py:data:`msvcrt.LK_UNLCK`> with No module named 'msvcrt'
1260) <DataObjStr:: :py:function:`msvcrt.get_osfhandle`> with No module named 'msvcrt'
1261) <DataObjStr:: :py:function:`msvcrt.getch`> with No module named 'msvcrt'
1262) <DataObjStr:: :py:function:`msvcrt.getche`> with No module named 'msvcrt'
1263) <DataObjStr:: :py:function:`msvcrt.getwch`> with No module named 'msvcrt'
1264) <DataObjStr:: :py:function:`msvcrt.getwche`> with No module named 'msvcrt'
1265) <DataObjStr:: :py:function:`msvcrt.heapmin`> with No module named 'msvcrt'
1266) <DataObjStr:: :py:function:`msvcrt.kbhit`> with No module named 'msvcrt'
1267) <DataObjStr:: :py:function:`msvcrt.locking`> with No module named 'msvcrt'
1268) <DataObjStr:: :py:function:`msvcrt.open_osfhandle`> with No module named 'msvcrt'
1269) <DataObjStr:: :py:function:`msvcrt.putch`> with No module named 'msvcrt'
1270) <DataObjStr:: :py:function:`msvcrt.putwch`> with No module named 'msvcrt'
1271) <DataObjStr:: :py:function:`msvcrt.setmode`> with No module named 'msvcrt'
1272) <DataObjStr:: :py:function:`msvcrt.ungetch`> with No module named 'msvcrt'
1273) <DataObjStr:: :py:function:`msvcrt.ungetwch`> with No module named 'msvcrt'
1274) <DataObjStr:: :py:method:`multiprocessing.JoinableQueue.join`> with 'function' object has no attribute 'join'
1275) <DataObjStr:: :py:method:`multiprocessing.JoinableQueue.task_done`> with 'function' object has no attribute 'task_done'
1276) <DataObjStr:: :py:method:`multiprocessing.Lock.acquire`> with 'function' object has no attribute 'acquire'
1277) <DataObjStr:: :py:method:`multiprocessing.Lock.release`> with 'function' object has no attribute 'release'
1278) <DataObjStr:: :py:method:`multiprocessing.Queue.cancel_join_thread`> with 'function' object has no attribute 'cancel_join_thread'
1279) <DataObjStr:: :py:method:`multiprocessing.Queue.close`> with 'function' object has no attribute 'close'
1280) <DataObjStr:: :py:method:`multiprocessing.Queue.empty`> with 'function' object has no attribute 'empty'
1281) <DataObjStr:: :py:method:`multiprocessing.Queue.full`> with 'function' object has no attribute 'full'
1282) <DataObjStr:: :py:method:`multiprocessing.Queue.get`> with 'function' object has no attribute 'get'
1283) <DataObjStr:: :py:method:`multiprocessing.Queue.get_nowait`> with 'function' object has no attribute 'get_nowait'
1284) <DataObjStr:: :py:method:`multiprocessing.Queue.join_thread`> with 'function' object has no attribute 'join_thread'
1285) <DataObjStr:: :py:method:`multiprocessing.Queue.put`> with 'function' object has no attribute 'put'
1286) <DataObjStr:: :py:method:`multiprocessing.Queue.put_nowait`> with 'function' object has no attribute 'put_nowait'
1287) <DataObjStr:: :py:method:`multiprocessing.Queue.qsize`> with 'function' object has no attribute 'qsize'
1288) <DataObjStr:: :py:method:`multiprocessing.RLock.acquire`> with 'function' object has no attribute 'acquire'
1289) <DataObjStr:: :py:method:`multiprocessing.RLock.release`> with 'function' object has no attribute 'release'
1290) <DataObjStr:: :py:method:`multiprocessing.SimpleQueue.close`> with 'function' object has no attribute 'close'
1291) <DataObjStr:: :py:method:`multiprocessing.SimpleQueue.empty`> with 'function' object has no attribute 'empty'
1292) <DataObjStr:: :py:method:`multiprocessing.SimpleQueue.get`> with 'function' object has no attribute 'get'
1293) <DataObjStr:: :py:method:`multiprocessing.SimpleQueue.put`> with 'function' object has no attribute 'put'
1294) <DataObjStr:: :py:function:`multiprocessing.connection.Client`> with module 'multiprocessing' has no attribute 'connection.Client'
1295) <DataObjStr:: :py:class:`multiprocessing.connection.Connection`> with module 'multiprocessing' has no attribute 'connection.Connection'
1296) <DataObjStr:: :py:method:`multiprocessing.connection.Connection.close`> with module 'multiprocessing' has no attribute 'connection.Connection'
1297) <DataObjStr:: :py:method:`multiprocessing.connection.Connection.fileno`> with module 'multiprocessing' has no attribute 'connection.Connection'
1298) <DataObjStr:: :py:method:`multiprocessing.connection.Connection.poll`> with module 'multiprocessing' has no attribute 'connection.Connection'
1299) <DataObjStr:: :py:method:`multiprocessing.connection.Connection.recv`> with module 'multiprocessing' has no attribute 'connection.Connection'
1300) <DataObjStr:: :py:method:`multiprocessing.connection.Connection.recv_bytes`> with module 'multiprocessing' has no attribute 'connection.Connection'
1301) <DataObjStr:: :py:method:`multiprocessing.connection.Connection.recv_bytes_into`> with module 'multiprocessing' has no attribute 'connection.Connection'
1302) <DataObjStr:: :py:method:`multiprocessing.connection.Connection.send`> with module 'multiprocessing' has no attribute 'connection.Connection'
1303) <DataObjStr:: :py:method:`multiprocessing.connection.Connection.send_bytes`> with module 'multiprocessing' has no attribute 'connection.Connection'
1304) <DataObjStr:: :py:class:`multiprocessing.connection.Listener`> with module 'multiprocessing' has no attribute 'connection.Listener'
1305) <DataObjStr:: :py:method:`multiprocessing.connection.Listener.accept`> with module 'multiprocessing' has no attribute 'connection.Listener'
1306) <DataObjStr:: :py:attribute:`multiprocessing.connection.Listener.address`> with module 'multiprocessing' has no attribute 'connection.Listener'
1307) <DataObjStr:: :py:method:`multiprocessing.connection.Listener.close`> with module 'multiprocessing' has no attribute 'connection.Listener'
1308) <DataObjStr:: :py:attribute:`multiprocessing.connection.Listener.last_accepted`> with module 'multiprocessing' has no attribute 'connection.Listener'
1309) <DataObjStr:: :py:function:`multiprocessing.connection.answer_challenge`> with module 'multiprocessing' has no attribute 'connection.answer_challenge'
1310) <DataObjStr:: :py:function:`multiprocessing.connection.deliver_challenge`> with module 'multiprocessing' has no attribute 'connection.deliver_challenge'
1311) <DataObjStr:: :py:function:`multiprocessing.connection.wait`> with module 'multiprocessing' has no attribute 'connection.wait'
1312) <DataObjStr:: :py:class:`multiprocessing.managers.BaseManager`> with module 'multiprocessing' has no attribute 'managers.BaseManager'
1313) <DataObjStr:: :py:attribute:`multiprocessing.managers.BaseManager.address`> with module 'multiprocessing' has no attribute 'managers.BaseManager'
1314) <DataObjStr:: :py:method:`multiprocessing.managers.BaseManager.connect`> with module 'multiprocessing' has no attribute 'managers.BaseManager'
1315) <DataObjStr:: :py:method:`multiprocessing.managers.BaseManager.get_server`> with module 'multiprocessing' has no attribute 'managers.BaseManager'
1316) <DataObjStr:: :py:method:`multiprocessing.managers.BaseManager.register`> with module 'multiprocessing' has no attribute 'managers.BaseManager'
1317) <DataObjStr:: :py:method:`multiprocessing.managers.BaseManager.shutdown`> with module 'multiprocessing' has no attribute 'managers.BaseManager'
1318) <DataObjStr:: :py:method:`multiprocessing.managers.BaseManager.start`> with module 'multiprocessing' has no attribute 'managers.BaseManager'
1319) <DataObjStr:: :py:class:`multiprocessing.managers.BaseProxy`> with module 'multiprocessing' has no attribute 'managers.BaseProxy'
1320) <DataObjStr:: :py:method:`multiprocessing.managers.BaseProxy.__repr__`> with module 'multiprocessing' has no attribute 'managers.BaseProxy'
1321) <DataObjStr:: :py:method:`multiprocessing.managers.BaseProxy.__str__`> with module 'multiprocessing' has no attribute 'managers.BaseProxy'
1322) <DataObjStr:: :py:method:`multiprocessing.managers.BaseProxy._callmethod`> with module 'multiprocessing' has no attribute 'managers.BaseProxy'
1323) <DataObjStr:: :py:method:`multiprocessing.managers.BaseProxy._getvalue`> with module 'multiprocessing' has no attribute 'managers.BaseProxy'
1324) <DataObjStr:: :py:class:`multiprocessing.managers.Namespace`> with module 'multiprocessing' has no attribute 'managers.Namespace'
1325) <DataObjStr:: :py:class:`multiprocessing.managers.SharedMemoryManager`> with module 'multiprocessing' has no attribute 'managers.SharedMemoryManager'
1326) <DataObjStr:: :py:method:`multiprocessing.managers.SharedMemoryManager.ShareableList`> with module 'multiprocessing' has no attribute 'managers.SharedMemoryManager'
1327) <DataObjStr:: :py:method:`multiprocessing.managers.SharedMemoryManager.SharedMemory`> with module 'multiprocessing' has no attribute 'managers.SharedMemoryManager'
1328) <DataObjStr:: :py:class:`multiprocessing.managers.SyncManager`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1329) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.Array`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1330) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.Barrier`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1331) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.BoundedSemaphore`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1332) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.Condition`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1333) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.Event`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1334) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.Lock`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1335) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.Namespace`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1336) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.Queue`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1337) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.RLock`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1338) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.Semaphore`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1339) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.Value`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1340) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.dict`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1341) <DataObjStr:: :py:method:`multiprocessing.managers.SyncManager.list`> with module 'multiprocessing' has no attribute 'managers.SyncManager'
1342) <DataObjStr:: :py:class:`multiprocessing.pool.AsyncResult`> with module 'multiprocessing' has no attribute 'pool.AsyncResult'
1343) <DataObjStr:: :py:method:`multiprocessing.pool.AsyncResult.get`> with module 'multiprocessing' has no attribute 'pool.AsyncResult'
1344) <DataObjStr:: :py:method:`multiprocessing.pool.AsyncResult.ready`> with module 'multiprocessing' has no attribute 'pool.AsyncResult'
1345) <DataObjStr:: :py:method:`multiprocessing.pool.AsyncResult.successful`> with module 'multiprocessing' has no attribute 'pool.AsyncResult'
1346) <DataObjStr:: :py:method:`multiprocessing.pool.AsyncResult.wait`> with module 'multiprocessing' has no attribute 'pool.AsyncResult'
1347) <DataObjStr:: :py:class:`multiprocessing.pool.Pool`> with module 'multiprocessing' has no attribute 'pool.Pool'
1348) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.apply`> with module 'multiprocessing' has no attribute 'pool.Pool'
1349) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.apply_async`> with module 'multiprocessing' has no attribute 'pool.Pool'
1350) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.close`> with module 'multiprocessing' has no attribute 'pool.Pool'
1351) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.imap`> with module 'multiprocessing' has no attribute 'pool.Pool'
1352) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.imap_unordered`> with module 'multiprocessing' has no attribute 'pool.Pool'
1353) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.join`> with module 'multiprocessing' has no attribute 'pool.Pool'
1354) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.map`> with module 'multiprocessing' has no attribute 'pool.Pool'
1355) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.map_async`> with module 'multiprocessing' has no attribute 'pool.Pool'
1356) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.starmap`> with module 'multiprocessing' has no attribute 'pool.Pool'
1357) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.starmap_async`> with module 'multiprocessing' has no attribute 'pool.Pool'
1358) <DataObjStr:: :py:method:`multiprocessing.pool.Pool.terminate`> with module 'multiprocessing' has no attribute 'pool.Pool'
1359) <DataObjStr:: :py:class:`multiprocessing.pool.ThreadPool`> with module 'multiprocessing' has no attribute 'pool.ThreadPool'
1360) <DataObjStr:: :py:class:`multiprocessing.shared_memory.ShareableList`> with module 'multiprocessing' has no attribute 'shared_memory.ShareableList'
1361) <DataObjStr:: :py:method:`multiprocessing.shared_memory.ShareableList.count`> with module 'multiprocessing' has no attribute 'shared_memory.ShareableList'
1362) <DataObjStr:: :py:attribute:`multiprocessing.shared_memory.ShareableList.format`> with module 'multiprocessing' has no attribute 'shared_memory.ShareableList'
1363) <DataObjStr:: :py:method:`multiprocessing.shared_memory.ShareableList.index`> with module 'multiprocessing' has no attribute 'shared_memory.ShareableList'
1364) <DataObjStr:: :py:attribute:`multiprocessing.shared_memory.ShareableList.shm`> with module 'multiprocessing' has no attribute 'shared_memory.ShareableList'
1365) <DataObjStr:: :py:class:`multiprocessing.shared_memory.SharedMemory`> with module 'multiprocessing' has no attribute 'shared_memory.SharedMemory'
1366) <DataObjStr:: :py:attribute:`multiprocessing.shared_memory.SharedMemory.buf`> with module 'multiprocessing' has no attribute 'shared_memory.SharedMemory'
1367) <DataObjStr:: :py:method:`multiprocessing.shared_memory.SharedMemory.close`> with module 'multiprocessing' has no attribute 'shared_memory.SharedMemory'
1368) <DataObjStr:: :py:attribute:`multiprocessing.shared_memory.SharedMemory.name`> with module 'multiprocessing' has no attribute 'shared_memory.SharedMemory'
1369) <DataObjStr:: :py:attribute:`multiprocessing.shared_memory.SharedMemory.size`> with module 'multiprocessing' has no attribute 'shared_memory.SharedMemory'
1370) <DataObjStr:: :py:method:`multiprocessing.shared_memory.SharedMemory.unlink`> with module 'multiprocessing' has no attribute 'shared_memory.SharedMemory'
1371) <DataObjStr:: :py:function:`multiprocessing.sharedctypes.Array`> with module 'multiprocessing' has no attribute 'sharedctypes.Array'
1372) <DataObjStr:: :py:function:`multiprocessing.sharedctypes.RawArray`> with module 'multiprocessing' has no attribute 'sharedctypes.RawArray'
1373) <DataObjStr:: :py:function:`multiprocessing.sharedctypes.RawValue`> with module 'multiprocessing' has no attribute 'sharedctypes.RawValue'
1374) <DataObjStr:: :py:function:`multiprocessing.sharedctypes.Value`> with module 'multiprocessing' has no attribute 'sharedctypes.Value'
1375) <DataObjStr:: :py:function:`multiprocessing.sharedctypes.copy`> with module 'multiprocessing' has no attribute 'sharedctypes.copy'
1376) <DataObjStr:: :py:function:`multiprocessing.sharedctypes.multiprocessing.Manager`> with module 'multiprocessing' has no attribute 'sharedctypes.multiprocessing.Manager'
1377) <DataObjStr:: :py:function:`multiprocessing.sharedctypes.synchronized`> with module 'multiprocessing' has no attribute 'sharedctypes.synchronized'
1378) <DataObjStr:: :py:attribute:`netrc.netrc.hosts`> with type object 'netrc' has no attribute 'hosts'
1379) <DataObjStr:: :py:attribute:`netrc.netrc.macros`> with type object 'netrc' has no attribute 'macros'
1380) <DataObjStr:: :py:attribute:`nntplib.NNTP.nntp_implementation`> with type object 'NNTP' has no attribute 'nntp_implementation'
1381) <DataObjStr:: :py:attribute:`nntplib.NNTP.nntp_version`> with type object 'NNTP' has no attribute 'nntp_version'
1382) <DataObjStr:: :py:attribute:`nntplib.NNTPError.response`> with type object 'NNTPError' has no attribute 'response'
1383) <DataObjStr:: :py:method:`object.__abs__`> with type object 'object' has no attribute '__abs__'
1384) <DataObjStr:: :py:method:`object.__add__`> with type object 'object' has no attribute '__add__'
1385) <DataObjStr:: :py:method:`object.__aenter__`> with type object 'object' has no attribute '__aenter__'
1386) <DataObjStr:: :py:method:`object.__aexit__`> with type object 'object' has no attribute '__aexit__'
1387) <DataObjStr:: :py:method:`object.__aiter__`> with type object 'object' has no attribute '__aiter__'
1388) <DataObjStr:: :py:method:`object.__and__`> with type object 'object' has no attribute '__and__'
1389) <DataObjStr:: :py:method:`object.__anext__`> with type object 'object' has no attribute '__anext__'
1390) <DataObjStr:: :py:method:`object.__await__`> with type object 'object' has no attribute '__await__'
1391) <DataObjStr:: :py:method:`object.__bool__`> with type object 'object' has no attribute '__bool__'
1392) <DataObjStr:: :py:method:`object.__bytes__`> with type object 'object' has no attribute '__bytes__'
1393) <DataObjStr:: :py:method:`object.__ceil__`> with type object 'object' has no attribute '__ceil__'
1394) <DataObjStr:: :py:method:`object.__class_getitem__`> with type object 'object' has no attribute '__class_getitem__'
1395) <DataObjStr:: :py:method:`object.__complex__`> with type object 'object' has no attribute '__complex__'
1396) <DataObjStr:: :py:method:`object.__contains__`> with type object 'object' has no attribute '__contains__'
1397) <DataObjStr:: :py:method:`object.__del__`> with type object 'object' has no attribute '__del__'
1398) <DataObjStr:: :py:method:`object.__delete__`> with type object 'object' has no attribute '__delete__'
1399) <DataObjStr:: :py:method:`object.__delitem__`> with type object 'object' has no attribute '__delitem__'
1400) <DataObjStr:: :py:method:`object.__divmod__`> with type object 'object' has no attribute '__divmod__'
1401) <DataObjStr:: :py:method:`object.__enter__`> with type object 'object' has no attribute '__enter__'
1402) <DataObjStr:: :py:method:`object.__exit__`> with type object 'object' has no attribute '__exit__'
1403) <DataObjStr:: :py:method:`object.__float__`> with type object 'object' has no attribute '__float__'
1404) <DataObjStr:: :py:method:`object.__floor__`> with type object 'object' has no attribute '__floor__'
1405) <DataObjStr:: :py:method:`object.__floordiv__`> with type object 'object' has no attribute '__floordiv__'
1406) <DataObjStr:: :py:method:`object.__get__`> with type object 'object' has no attribute '__get__'
1407) <DataObjStr:: :py:method:`object.__getattr__`> with type object 'object' has no attribute '__getattr__'
1408) <DataObjStr:: :py:method:`object.__getitem__`> with type object 'object' has no attribute '__getitem__'
1409) <DataObjStr:: :py:method:`object.__getnewargs__`> with type object 'object' has no attribute '__getnewargs__'
1410) <DataObjStr:: :py:method:`object.__getnewargs_ex__`> with type object 'object' has no attribute '__getnewargs_ex__'
1411) <DataObjStr:: :py:method:`object.__getstate__`> with type object 'object' has no attribute '__getstate__'
1412) <DataObjStr:: :py:method:`object.__iadd__`> with type object 'object' has no attribute '__iadd__'
1413) <DataObjStr:: :py:method:`object.__iand__`> with type object 'object' has no attribute '__iand__'
1414) <DataObjStr:: :py:method:`object.__ifloordiv__`> with type object 'object' has no attribute '__ifloordiv__'
1415) <DataObjStr:: :py:method:`object.__ilshift__`> with type object 'object' has no attribute '__ilshift__'
1416) <DataObjStr:: :py:method:`object.__imatmul__`> with type object 'object' has no attribute '__imatmul__'
1417) <DataObjStr:: :py:method:`object.__imod__`> with type object 'object' has no attribute '__imod__'
1418) <DataObjStr:: :py:method:`object.__imul__`> with type object 'object' has no attribute '__imul__'
1419) <DataObjStr:: :py:method:`object.__index__`> with type object 'object' has no attribute '__index__'
1420) <DataObjStr:: :py:method:`object.__int__`> with type object 'object' has no attribute '__int__'
1421) <DataObjStr:: :py:method:`object.__invert__`> with type object 'object' has no attribute '__invert__'
1422) <DataObjStr:: :py:method:`object.__ior__`> with type object 'object' has no attribute '__ior__'
1423) <DataObjStr:: :py:method:`object.__ipow__`> with type object 'object' has no attribute '__ipow__'
1424) <DataObjStr:: :py:method:`object.__irshift__`> with type object 'object' has no attribute '__irshift__'
1425) <DataObjStr:: :py:method:`object.__isub__`> with type object 'object' has no attribute '__isub__'
1426) <DataObjStr:: :py:method:`object.__iter__`> with type object 'object' has no attribute '__iter__'
1427) <DataObjStr:: :py:method:`object.__itruediv__`> with type object 'object' has no attribute '__itruediv__'
1428) <DataObjStr:: :py:method:`object.__ixor__`> with type object 'object' has no attribute '__ixor__'
1429) <DataObjStr:: :py:method:`object.__len__`> with type object 'object' has no attribute '__len__'
1430) <DataObjStr:: :py:method:`object.__length_hint__`> with type object 'object' has no attribute '__length_hint__'
1431) <DataObjStr:: :py:method:`object.__lshift__`> with type object 'object' has no attribute '__lshift__'
1432) <DataObjStr:: :py:data:`object.__match_args__`> with No module named 'object'
1433) <DataObjStr:: :py:method:`object.__matmul__`> with type object 'object' has no attribute '__matmul__'
1434) <DataObjStr:: :py:method:`object.__missing__`> with type object 'object' has no attribute '__missing__'
1435) <DataObjStr:: :py:method:`object.__mod__`> with type object 'object' has no attribute '__mod__'
1436) <DataObjStr:: :py:method:`object.__mul__`> with type object 'object' has no attribute '__mul__'
1437) <DataObjStr:: :py:method:`object.__neg__`> with type object 'object' has no attribute '__neg__'
1438) <DataObjStr:: :py:method:`object.__pos__`> with type object 'object' has no attribute '__pos__'
1439) <DataObjStr:: :py:method:`object.__pow__`> with type object 'object' has no attribute '__pow__'
1440) <DataObjStr:: :py:method:`object.__radd__`> with type object 'object' has no attribute '__radd__'
1441) <DataObjStr:: :py:method:`object.__rand__`> with type object 'object' has no attribute '__rand__'
1442) <DataObjStr:: :py:method:`object.__rdivmod__`> with type object 'object' has no attribute '__rdivmod__'
1443) <DataObjStr:: :py:method:`object.__reversed__`> with type object 'object' has no attribute '__reversed__'
1444) <DataObjStr:: :py:method:`object.__rfloordiv__`> with type object 'object' has no attribute '__rfloordiv__'
1445) <DataObjStr:: :py:method:`object.__rlshift__`> with type object 'object' has no attribute '__rlshift__'
1446) <DataObjStr:: :py:method:`object.__rmatmul__`> with type object 'object' has no attribute '__rmatmul__'
1447) <DataObjStr:: :py:method:`object.__rmod__`> with type object 'object' has no attribute '__rmod__'
1448) <DataObjStr:: :py:method:`object.__rmul__`> with type object 'object' has no attribute '__rmul__'
1449) <DataObjStr:: :py:method:`object.__round__`> with type object 'object' has no attribute '__round__'
1450) <DataObjStr:: :py:method:`object.__rpow__`> with type object 'object' has no attribute '__rpow__'
1451) <DataObjStr:: :py:method:`object.__rrshift__`> with type object 'object' has no attribute '__rrshift__'
1452) <DataObjStr:: :py:method:`object.__rshift__`> with type object 'object' has no attribute '__rshift__'
1453) <DataObjStr:: :py:method:`object.__rsub__`> with type object 'object' has no attribute '__rsub__'
1454) <DataObjStr:: :py:method:`object.__rtruediv__`> with type object 'object' has no attribute '__rtruediv__'
1455) <DataObjStr:: :py:method:`object.__rxor__`> with type object 'object' has no attribute '__rxor__'
1456) <DataObjStr:: :py:method:`object.__set__`> with type object 'object' has no attribute '__set__'
1457) <DataObjStr:: :py:method:`object.__set_name__`> with type object 'object' has no attribute '__set_name__'
1458) <DataObjStr:: :py:method:`object.__setitem__`> with type object 'object' has no attribute '__setitem__'
1459) <DataObjStr:: :py:method:`object.__setstate__`> with type object 'object' has no attribute '__setstate__'
1460) <DataObjStr:: :py:data:`object.__slots__`> with No module named 'object'
1461) <DataObjStr:: :py:method:`object.__sub__`> with type object 'object' has no attribute '__sub__'
1462) <DataObjStr:: :py:method:`object.__truediv__`> with type object 'object' has no attribute '__truediv__'
1463) <DataObjStr:: :py:method:`object.__trunc__`> with type object 'object' has no attribute '__trunc__'
1464) <DataObjStr:: :py:method:`object.__xor__`> with type object 'object' has no attribute '__xor__'
1465) <DataObjStr:: :py:attribute:`optparse.Option.action`> with type object 'Option' has no attribute 'action'
1466) <DataObjStr:: :py:attribute:`optparse.Option.callback`> with type object 'Option' has no attribute 'callback'
1467) <DataObjStr:: :py:attribute:`optparse.Option.callback_args`> with type object 'Option' has no attribute 'callback_args'
1468) <DataObjStr:: :py:attribute:`optparse.Option.callback_kwargs`> with type object 'Option' has no attribute 'callback_kwargs'
1469) <DataObjStr:: :py:attribute:`optparse.Option.choices`> with type object 'Option' has no attribute 'choices'
1470) <DataObjStr:: :py:attribute:`optparse.Option.const`> with type object 'Option' has no attribute 'const'
1471) <DataObjStr:: :py:attribute:`optparse.Option.default`> with type object 'Option' has no attribute 'default'
1472) <DataObjStr:: :py:attribute:`optparse.Option.dest`> with type object 'Option' has no attribute 'dest'
1473) <DataObjStr:: :py:attribute:`optparse.Option.help`> with type object 'Option' has no attribute 'help'
1474) <DataObjStr:: :py:attribute:`optparse.Option.metavar`> with type object 'Option' has no attribute 'metavar'
1475) <DataObjStr:: :py:attribute:`optparse.Option.nargs`> with type object 'Option' has no attribute 'nargs'
1476) <DataObjStr:: :py:attribute:`optparse.Option.type`> with type object 'Option' has no attribute 'type'
1477) <DataObjStr:: :py:data:`os.EX_NOTFOUND`> with module 'os' has no attribute 'EX_NOTFOUND'
1478) <DataObjStr:: :py:data:`os.O_BINARY`> with module 'os' has no attribute 'O_BINARY'
1479) <DataObjStr:: :py:data:`os.O_EVTONLY`> with module 'os' has no attribute 'O_EVTONLY'
1480) <DataObjStr:: :py:data:`os.O_EXLOCK`> with module 'os' has no attribute 'O_EXLOCK'
1481) <DataObjStr:: :py:data:`os.O_NOFOLLOW_ANY`> with module 'os' has no attribute 'O_NOFOLLOW_ANY'
1482) <DataObjStr:: :py:data:`os.O_NOINHERIT`> with module 'os' has no attribute 'O_NOINHERIT'
1483) <DataObjStr:: :py:data:`os.O_RANDOM`> with module 'os' has no attribute 'O_RANDOM'
1484) <DataObjStr:: :py:data:`os.O_SEQUENTIAL`> with module 'os' has no attribute 'O_SEQUENTIAL'
1485) <DataObjStr:: :py:data:`os.O_SHLOCK`> with module 'os' has no attribute 'O_SHLOCK'
1486) <DataObjStr:: :py:data:`os.O_SHORT_LIVED`> with module 'os' has no attribute 'O_SHORT_LIVED'
1487) <DataObjStr:: :py:data:`os.O_SYMLINK`> with module 'os' has no attribute 'O_SYMLINK'
1488) <DataObjStr:: :py:data:`os.O_TEMPORARY`> with module 'os' has no attribute 'O_TEMPORARY'
1489) <DataObjStr:: :py:data:`os.O_TEXT`> with module 'os' has no attribute 'O_TEXT'
1490) <DataObjStr:: :py:data:`os.P_DETACH`> with module 'os' has no attribute 'P_DETACH'
1491) <DataObjStr:: :py:data:`os.P_OVERLAY`> with module 'os' has no attribute 'P_OVERLAY'
1492) <DataObjStr:: :py:data:`os.SCHED_SPORADIC`> with module 'os' has no attribute 'SCHED_SPORADIC'
1493) <DataObjStr:: :py:data:`os.SF_MNOWAIT`> with module 'os' has no attribute 'SF_MNOWAIT'
1494) <DataObjStr:: :py:data:`os.SF_NODISKIO`> with module 'os' has no attribute 'SF_NODISKIO'
1495) <DataObjStr:: :py:data:`os.SF_SYNC`> with module 'os' has no attribute 'SF_SYNC'
1496) <DataObjStr:: :py:function:`os.add_dll_directory`> with module 'os' has no attribute 'add_dll_directory'
1497) <DataObjStr:: :py:function:`os.chflags`> with module 'os' has no attribute 'chflags'
1498) <DataObjStr:: :py:function:`os.get_handle_inheritable`> with module 'os' has no attribute 'get_handle_inheritable'
1499) <DataObjStr:: :py:function:`os.lchflags`> with module 'os' has no attribute 'lchflags'
1500) <DataObjStr:: :py:function:`os.lchmod`> with module 'os' has no attribute 'lchmod'
1501) <DataObjStr:: :py:function:`os.path.abspath`> with module 'os' has no attribute 'path.abspath'
1502) <DataObjStr:: :py:function:`os.path.basename`> with module 'os' has no attribute 'path.basename'
1503) <DataObjStr:: :py:function:`os.path.commonpath`> with module 'os' has no attribute 'path.commonpath'
1504) <DataObjStr:: :py:function:`os.path.commonprefix`> with module 'os' has no attribute 'path.commonprefix'
1505) <DataObjStr:: :py:function:`os.path.dirname`> with module 'os' has no attribute 'path.dirname'
1506) <DataObjStr:: :py:function:`os.path.exists`> with module 'os' has no attribute 'path.exists'
1507) <DataObjStr:: :py:function:`os.path.expanduser`> with module 'os' has no attribute 'path.expanduser'
1508) <DataObjStr:: :py:function:`os.path.expandvars`> with module 'os' has no attribute 'path.expandvars'
1509) <DataObjStr:: :py:function:`os.path.getatime`> with module 'os' has no attribute 'path.getatime'
1510) <DataObjStr:: :py:function:`os.path.getctime`> with module 'os' has no attribute 'path.getctime'
1511) <DataObjStr:: :py:function:`os.path.getmtime`> with module 'os' has no attribute 'path.getmtime'
1512) <DataObjStr:: :py:function:`os.path.getsize`> with module 'os' has no attribute 'path.getsize'
1513) <DataObjStr:: :py:function:`os.path.isabs`> with module 'os' has no attribute 'path.isabs'
1514) <DataObjStr:: :py:function:`os.path.isdir`> with module 'os' has no attribute 'path.isdir'
1515) <DataObjStr:: :py:function:`os.path.isfile`> with module 'os' has no attribute 'path.isfile'
1516) <DataObjStr:: :py:function:`os.path.islink`> with module 'os' has no attribute 'path.islink'
1517) <DataObjStr:: :py:function:`os.path.ismount`> with module 'os' has no attribute 'path.ismount'
1518) <DataObjStr:: :py:function:`os.path.join`> with module 'os' has no attribute 'path.join'
1519) <DataObjStr:: :py:function:`os.path.lexists`> with module 'os' has no attribute 'path.lexists'
1520) <DataObjStr:: :py:function:`os.path.normcase`> with module 'os' has no attribute 'path.normcase'
1521) <DataObjStr:: :py:function:`os.path.normpath`> with module 'os' has no attribute 'path.normpath'
1522) <DataObjStr:: :py:function:`os.path.realpath`> with module 'os' has no attribute 'path.realpath'
1523) <DataObjStr:: :py:function:`os.path.relpath`> with module 'os' has no attribute 'path.relpath'
1524) <DataObjStr:: :py:function:`os.path.samefile`> with module 'os' has no attribute 'path.samefile'
1525) <DataObjStr:: :py:function:`os.path.sameopenfile`> with module 'os' has no attribute 'path.sameopenfile'
1526) <DataObjStr:: :py:function:`os.path.samestat`> with module 'os' has no attribute 'path.samestat'
1527) <DataObjStr:: :py:function:`os.path.split`> with module 'os' has no attribute 'path.split'
1528) <DataObjStr:: :py:function:`os.path.splitdrive`> with module 'os' has no attribute 'path.splitdrive'
1529) <DataObjStr:: :py:function:`os.path.splitext`> with module 'os' has no attribute 'path.splitext'
1530) <DataObjStr:: :py:data:`os.path.supports_unicode_filenames`> with module 'os' has no attribute 'path.supports_unicode_filenames'
1531) <DataObjStr:: :py:function:`os.plock`> with module 'os' has no attribute 'plock'
1532) <DataObjStr:: :py:method:`os.scandir.close`> with 'builtin_function_or_method' object has no attribute 'close'
1533) <DataObjStr:: :py:function:`os.set_handle_inheritable`> with module 'os' has no attribute 'set_handle_inheritable'
1534) <DataObjStr:: :py:function:`os.startfile`> with module 'os' has no attribute 'startfile'
1535) <DataObjStr:: :py:attribute:`os.stat_result.st_birthtime`> with type object 'os.stat_result' has no attribute 'st_birthtime'
1536) <DataObjStr:: :py:attribute:`os.stat_result.st_creator`> with type object 'os.stat_result' has no attribute 'st_creator'
1537) <DataObjStr:: :py:attribute:`os.stat_result.st_file_attributes`> with type object 'os.stat_result' has no attribute 'st_file_attributes'
1538) <DataObjStr:: :py:attribute:`os.stat_result.st_flags`> with type object 'os.stat_result' has no attribute 'st_flags'
1539) <DataObjStr:: :py:attribute:`os.stat_result.st_fstype`> with type object 'os.stat_result' has no attribute 'st_fstype'
1540) <DataObjStr:: :py:attribute:`os.stat_result.st_gen`> with type object 'os.stat_result' has no attribute 'st_gen'
1541) <DataObjStr:: :py:attribute:`os.stat_result.st_reparse_tag`> with type object 'os.stat_result' has no attribute 'st_reparse_tag'
1542) <DataObjStr:: :py:attribute:`os.stat_result.st_rsize`> with type object 'os.stat_result' has no attribute 'st_rsize'
1543) <DataObjStr:: :py:attribute:`os.stat_result.st_type`> with type object 'os.stat_result' has no attribute 'st_type'
1544) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.bufsize`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1545) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.channels`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1546) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.close`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1547) <DataObjStr:: :py:attribute:`ossaudiodev.oss_audio_device.closed`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1548) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.fileno`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1549) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.getfmts`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1550) <DataObjStr:: :py:attribute:`ossaudiodev.oss_audio_device.mode`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1551) <DataObjStr:: :py:attribute:`ossaudiodev.oss_audio_device.name`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1552) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.nonblock`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1553) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.obufcount`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1554) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.obuffree`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1555) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.post`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1556) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.read`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1557) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.reset`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1558) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.setfmt`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1559) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.setparameters`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1560) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.speed`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1561) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.sync`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1562) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.write`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1563) <DataObjStr:: :py:method:`ossaudiodev.oss_audio_device.writeall`> with module 'ossaudiodev' has no attribute 'oss_audio_device'
1564) <DataObjStr:: :py:method:`ossaudiodev.oss_mixer_device.close`> with module 'ossaudiodev' has no attribute 'oss_mixer_device'
1565) <DataObjStr:: :py:method:`ossaudiodev.oss_mixer_device.controls`> with module 'ossaudiodev' has no attribute 'oss_mixer_device'
1566) <DataObjStr:: :py:method:`ossaudiodev.oss_mixer_device.fileno`> with module 'ossaudiodev' has no attribute 'oss_mixer_device'
1567) <DataObjStr:: :py:method:`ossaudiodev.oss_mixer_device.get`> with module 'ossaudiodev' has no attribute 'oss_mixer_device'
1568) <DataObjStr:: :py:method:`ossaudiodev.oss_mixer_device.get_recsrc`> with module 'ossaudiodev' has no attribute 'oss_mixer_device'
1569) <DataObjStr:: :py:method:`ossaudiodev.oss_mixer_device.reccontrols`> with module 'ossaudiodev' has no attribute 'oss_mixer_device'
1570) <DataObjStr:: :py:method:`ossaudiodev.oss_mixer_device.set`> with module 'ossaudiodev' has no attribute 'oss_mixer_device'
1571) <DataObjStr:: :py:method:`ossaudiodev.oss_mixer_device.set_recsrc`> with module 'ossaudiodev' has no attribute 'oss_mixer_device'
1572) <DataObjStr:: :py:method:`ossaudiodev.oss_mixer_device.stereocontrols`> with module 'ossaudiodev' has no attribute 'oss_mixer_device'
1573) <DataObjStr:: :py:data:`pathlib.PurePath.anchor`> with module 'pathlib' has no attribute 'PurePath.anchor'
1574) <DataObjStr:: :py:data:`pathlib.PurePath.drive`> with module 'pathlib' has no attribute 'PurePath.drive'
1575) <DataObjStr:: :py:data:`pathlib.PurePath.name`> with module 'pathlib' has no attribute 'PurePath.name'
1576) <DataObjStr:: :py:data:`pathlib.PurePath.parent`> with module 'pathlib' has no attribute 'PurePath.parent'
1577) <DataObjStr:: :py:data:`pathlib.PurePath.parents`> with module 'pathlib' has no attribute 'PurePath.parents'
1578) <DataObjStr:: :py:data:`pathlib.PurePath.parts`> with module 'pathlib' has no attribute 'PurePath.parts'
1579) <DataObjStr:: :py:data:`pathlib.PurePath.root`> with module 'pathlib' has no attribute 'PurePath.root'
1580) <DataObjStr:: :py:data:`pathlib.PurePath.stem`> with module 'pathlib' has no attribute 'PurePath.stem'
1581) <DataObjStr:: :py:data:`pathlib.PurePath.suffix`> with module 'pathlib' has no attribute 'PurePath.suffix'
1582) <DataObjStr:: :py:data:`pathlib.PurePath.suffixes`> with module 'pathlib' has no attribute 'PurePath.suffixes'
1583) <DataObjStr:: :py:method:`pickle.Pickler.reducer_override`> with type object '_pickle.Pickler' has no attribute 'reducer_override'
1584) <DataObjStr:: :py:method:`profile.Profile.disable`> with type object 'Profile' has no attribute 'disable'
1585) <DataObjStr:: :py:method:`profile.Profile.enable`> with type object 'Profile' has no attribute 'enable'
1586) <DataObjStr:: :py:attribute:`pyclbr.Class.children`> with type object 'Class' has no attribute 'children'
1587) <DataObjStr:: :py:attribute:`pyclbr.Class.file`> with type object 'Class' has no attribute 'file'
1588) <DataObjStr:: :py:attribute:`pyclbr.Class.lineno`> with type object 'Class' has no attribute 'lineno'
1589) <DataObjStr:: :py:attribute:`pyclbr.Class.methods`> with type object 'Class' has no attribute 'methods'
1590) <DataObjStr:: :py:attribute:`pyclbr.Class.module`> with type object 'Class' has no attribute 'module'
1591) <DataObjStr:: :py:attribute:`pyclbr.Class.name`> with type object 'Class' has no attribute 'name'
1592) <DataObjStr:: :py:attribute:`pyclbr.Class.parent`> with type object 'Class' has no attribute 'parent'
1593) <DataObjStr:: :py:attribute:`pyclbr.Class.super`> with type object 'Class' has no attribute 'super'
1594) <DataObjStr:: :py:attribute:`pyclbr.Function.children`> with type object 'Function' has no attribute 'children'
1595) <DataObjStr:: :py:attribute:`pyclbr.Function.file`> with type object 'Function' has no attribute 'file'
1596) <DataObjStr:: :py:attribute:`pyclbr.Function.is_async`> with type object 'Function' has no attribute 'is_async'
1597) <DataObjStr:: :py:attribute:`pyclbr.Function.lineno`> with type object 'Function' has no attribute 'lineno'
1598) <DataObjStr:: :py:attribute:`pyclbr.Function.module`> with type object 'Function' has no attribute 'module'
1599) <DataObjStr:: :py:attribute:`pyclbr.Function.name`> with type object 'Function' has no attribute 'name'
1600) <DataObjStr:: :py:attribute:`pyclbr.Function.parent`> with type object 'Function' has no attribute 'parent'
1601) <DataObjStr:: :py:attribute:`re.error.colno`> with type object 'error' has no attribute 'colno'
1602) <DataObjStr:: :py:attribute:`re.error.lineno`> with type object 'error' has no attribute 'lineno'
1603) <DataObjStr:: :py:attribute:`re.error.msg`> with type object 'error' has no attribute 'msg'
1604) <DataObjStr:: :py:attribute:`re.error.pattern`> with type object 'error' has no attribute 'pattern'
1605) <DataObjStr:: :py:attribute:`re.error.pos`> with type object 'error' has no attribute 'pos'
1606) <DataObjStr:: :py:attribute:`reprlib.Repr.maxarray`> with type object 'Repr' has no attribute 'maxarray'
1607) <DataObjStr:: :py:attribute:`reprlib.Repr.maxdeque`> with type object 'Repr' has no attribute 'maxdeque'
1608) <DataObjStr:: :py:attribute:`reprlib.Repr.maxdict`> with type object 'Repr' has no attribute 'maxdict'
1609) <DataObjStr:: :py:attribute:`reprlib.Repr.maxfrozenset`> with type object 'Repr' has no attribute 'maxfrozenset'
1610) <DataObjStr:: :py:attribute:`reprlib.Repr.maxlevel`> with type object 'Repr' has no attribute 'maxlevel'
1611) <DataObjStr:: :py:attribute:`reprlib.Repr.maxlist`> with type object 'Repr' has no attribute 'maxlist'
1612) <DataObjStr:: :py:attribute:`reprlib.Repr.maxlong`> with type object 'Repr' has no attribute 'maxlong'
1613) <DataObjStr:: :py:attribute:`reprlib.Repr.maxother`> with type object 'Repr' has no attribute 'maxother'
1614) <DataObjStr:: :py:attribute:`reprlib.Repr.maxset`> with type object 'Repr' has no attribute 'maxset'
1615) <DataObjStr:: :py:attribute:`reprlib.Repr.maxstring`> with type object 'Repr' has no attribute 'maxstring'
1616) <DataObjStr:: :py:attribute:`reprlib.Repr.maxtuple`> with type object 'Repr' has no attribute 'maxtuple'
1617) <DataObjStr:: :py:data:`resource.RLIMIT_KQUEUES`> with module 'resource' has no attribute 'RLIMIT_KQUEUES'
1618) <DataObjStr:: :py:data:`resource.RLIMIT_NPTS`> with module 'resource' has no attribute 'RLIMIT_NPTS'
1619) <DataObjStr:: :py:data:`resource.RLIMIT_SBSIZE`> with module 'resource' has no attribute 'RLIMIT_SBSIZE'
1620) <DataObjStr:: :py:data:`resource.RLIMIT_SWAP`> with module 'resource' has no attribute 'RLIMIT_SWAP'
1621) <DataObjStr:: :py:data:`resource.RLIMIT_VMEM`> with module 'resource' has no attribute 'RLIMIT_VMEM'
1622) <DataObjStr:: :py:data:`resource.RUSAGE_BOTH`> with module 'resource' has no attribute 'RUSAGE_BOTH'
1623) <DataObjStr:: :py:attribute:`select.PIPE_BUF`> with module 'builtins' has no attribute 'select'
1624) <DataObjStr:: :py:function:`select.devpoll`> with module 'select' has no attribute 'devpoll'
1625) <DataObjStr:: :py:method:`select.devpoll.close`> with module 'select' has no attribute 'devpoll'
1626) <DataObjStr:: :py:attribute:`select.devpoll.closed`> with module 'select' has no attribute 'devpoll'
1627) <DataObjStr:: :py:method:`select.devpoll.fileno`> with module 'select' has no attribute 'devpoll'
1628) <DataObjStr:: :py:method:`select.devpoll.modify`> with module 'select' has no attribute 'devpoll'
1629) <DataObjStr:: :py:method:`select.devpoll.poll`> with module 'select' has no attribute 'devpoll'
1630) <DataObjStr:: :py:method:`select.devpoll.register`> with module 'select' has no attribute 'devpoll'
1631) <DataObjStr:: :py:method:`select.devpoll.unregister`> with module 'select' has no attribute 'devpoll'
1632) <DataObjStr:: :py:function:`select.kevent`> with module 'select' has no attribute 'kevent'
1633) <DataObjStr:: :py:attribute:`select.kevent.data`> with module 'select' has no attribute 'kevent'
1634) <DataObjStr:: :py:attribute:`select.kevent.fflags`> with module 'select' has no attribute 'kevent'
1635) <DataObjStr:: :py:attribute:`select.kevent.filter`> with module 'select' has no attribute 'kevent'
1636) <DataObjStr:: :py:attribute:`select.kevent.flags`> with module 'select' has no attribute 'kevent'
1637) <DataObjStr:: :py:attribute:`select.kevent.ident`> with module 'select' has no attribute 'kevent'
1638) <DataObjStr:: :py:attribute:`select.kevent.udata`> with module 'select' has no attribute 'kevent'
1639) <DataObjStr:: :py:function:`select.kqueue`> with module 'select' has no attribute 'kqueue'
1640) <DataObjStr:: :py:method:`select.kqueue.close`> with module 'select' has no attribute 'kqueue'
1641) <DataObjStr:: :py:attribute:`select.kqueue.closed`> with module 'select' has no attribute 'kqueue'
1642) <DataObjStr:: :py:method:`select.kqueue.control`> with module 'select' has no attribute 'kqueue'
1643) <DataObjStr:: :py:method:`select.kqueue.fileno`> with module 'select' has no attribute 'kqueue'
1644) <DataObjStr:: :py:method:`select.kqueue.fromfd`> with module 'select' has no attribute 'kqueue'
1645) <DataObjStr:: :py:method:`select.poll.modify`> with 'builtin_function_or_method' object has no attribute 'modify'
1646) <DataObjStr:: :py:method:`select.poll.poll`> with 'builtin_function_or_method' object has no attribute 'poll'
1647) <DataObjStr:: :py:method:`select.poll.register`> with 'builtin_function_or_method' object has no attribute 'register'
1648) <DataObjStr:: :py:method:`select.poll.unregister`> with 'builtin_function_or_method' object has no attribute 'unregister'
1649) <DataObjStr:: :py:class:`selectors.DevpollSelector`> with module 'selectors' has no attribute 'DevpollSelector'
1650) <DataObjStr:: :py:method:`selectors.DevpollSelector.fileno`> with module 'selectors' has no attribute 'DevpollSelector'
1651) <DataObjStr:: :py:class:`selectors.KqueueSelector`> with module 'selectors' has no attribute 'KqueueSelector'
1652) <DataObjStr:: :py:method:`selectors.KqueueSelector.fileno`> with module 'selectors' has no attribute 'KqueueSelector'
1653) <DataObjStr:: :py:attribute:`shlex.shlex.commenters`> with type object 'shlex' has no attribute 'commenters'
1654) <DataObjStr:: :py:attribute:`shlex.shlex.debug`> with type object 'shlex' has no attribute 'debug'
1655) <DataObjStr:: :py:attribute:`shlex.shlex.eof`> with type object 'shlex' has no attribute 'eof'
1656) <DataObjStr:: :py:attribute:`shlex.shlex.escape`> with type object 'shlex' has no attribute 'escape'
1657) <DataObjStr:: :py:attribute:`shlex.shlex.escapedquotes`> with type object 'shlex' has no attribute 'escapedquotes'
1658) <DataObjStr:: :py:attribute:`shlex.shlex.infile`> with type object 'shlex' has no attribute 'infile'
1659) <DataObjStr:: :py:attribute:`shlex.shlex.instream`> with type object 'shlex' has no attribute 'instream'
1660) <DataObjStr:: :py:attribute:`shlex.shlex.lineno`> with type object 'shlex' has no attribute 'lineno'
1661) <DataObjStr:: :py:attribute:`shlex.shlex.quotes`> with type object 'shlex' has no attribute 'quotes'
1662) <DataObjStr:: :py:attribute:`shlex.shlex.source`> with type object 'shlex' has no attribute 'source'
1663) <DataObjStr:: :py:attribute:`shlex.shlex.token`> with type object 'shlex' has no attribute 'token'
1664) <DataObjStr:: :py:attribute:`shlex.shlex.whitespace`> with type object 'shlex' has no attribute 'whitespace'
1665) <DataObjStr:: :py:attribute:`shlex.shlex.whitespace_split`> with type object 'shlex' has no attribute 'whitespace_split'
1666) <DataObjStr:: :py:attribute:`shlex.shlex.wordchars`> with type object 'shlex' has no attribute 'wordchars'
1667) <DataObjStr:: :py:data:`signal.CTRL_BREAK_EVENT`> with module 'signal' has no attribute 'CTRL_BREAK_EVENT'
1668) <DataObjStr:: :py:data:`signal.CTRL_C_EVENT`> with module 'signal' has no attribute 'CTRL_C_EVENT'
1669) <DataObjStr:: :py:data:`signal.SIGBREAK`> with module 'signal' has no attribute 'SIGBREAK'
1670) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.conn`> with type object 'SMTPChannel' has no attribute 'conn'
1671) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.fqdn`> with type object 'SMTPChannel' has no attribute 'fqdn'
1672) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.mailfrom`> with type object 'SMTPChannel' has no attribute 'mailfrom'
1673) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.peer`> with type object 'SMTPChannel' has no attribute 'peer'
1674) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.rcpttos`> with type object 'SMTPChannel' has no attribute 'rcpttos'
1675) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.received_data`> with type object 'SMTPChannel' has no attribute 'received_data'
1676) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.received_lines`> with type object 'SMTPChannel' has no attribute 'received_lines'
1677) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.seen_greeting`> with type object 'SMTPChannel' has no attribute 'seen_greeting'
1678) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.smtp_server`> with type object 'SMTPChannel' has no attribute 'smtp_server'
1679) <DataObjStr:: :py:attribute:`smtpd.SMTPChannel.smtp_state`> with type object 'SMTPChannel' has no attribute 'smtp_state'
1680) <DataObjStr:: :py:data:`socket.AF_LINK`> with module 'socket' has no attribute 'AF_LINK'
1681) <DataObjStr:: :py:data:`socket.SIO_KEEPALIVE_VALS`> with module 'socket' has no attribute 'SIO_KEEPALIVE_VALS'
1682) <DataObjStr:: :py:data:`socket.SIO_LOOPBACK_FAST_PATH`> with module 'socket' has no attribute 'SIO_LOOPBACK_FAST_PATH'
1683) <DataObjStr:: :py:data:`socket.SIO_RCVALL`> with module 'socket' has no attribute 'SIO_RCVALL'
1684) <DataObjStr:: :py:function:`socket.fromshare`> with module 'socket' has no attribute 'fromshare'
1685) <DataObjStr:: :py:method:`socket.socket.ioctl`> with type object 'socket' has no attribute 'ioctl'
1686) <DataObjStr:: :py:method:`socket.socket.share`> with type object 'socket' has no attribute 'share'
1687) <DataObjStr:: :py:attribute:`socketserver.BaseServer.RequestHandlerClass`> with type object 'BaseServer' has no attribute 'RequestHandlerClass'
1688) <DataObjStr:: :py:attribute:`socketserver.BaseServer.address_family`> with type object 'BaseServer' has no attribute 'address_family'
1689) <DataObjStr:: :py:attribute:`socketserver.BaseServer.allow_reuse_address`> with type object 'BaseServer' has no attribute 'allow_reuse_address'
1690) <DataObjStr:: :py:method:`socketserver.BaseServer.fileno`> with type object 'BaseServer' has no attribute 'fileno'
1691) <DataObjStr:: :py:method:`socketserver.BaseServer.get_request`> with type object 'BaseServer' has no attribute 'get_request'
1692) <DataObjStr:: :py:attribute:`socketserver.BaseServer.request_queue_size`> with type object 'BaseServer' has no attribute 'request_queue_size'
1693) <DataObjStr:: :py:attribute:`socketserver.BaseServer.server_address`> with type object 'BaseServer' has no attribute 'server_address'
1694) <DataObjStr:: :py:method:`socketserver.BaseServer.server_bind`> with type object 'BaseServer' has no attribute 'server_bind'
1695) <DataObjStr:: :py:attribute:`socketserver.BaseServer.socket`> with type object 'BaseServer' has no attribute 'socket'
1696) <DataObjStr:: :py:attribute:`socketserver.BaseServer.socket_type`> with type object 'BaseServer' has no attribute 'socket_type'
1697) <DataObjStr:: :py:data:`ssl.OP_IGNORE_UNEXPECTED_EOF`> with module 'ssl' has no attribute 'OP_IGNORE_UNEXPECTED_EOF'
1698) <DataObjStr:: :py:data:`ssl.PROTOCOL_SSLv2`> with module 'ssl' has no attribute 'PROTOCOL_SSLv2'
1699) <DataObjStr:: :py:data:`ssl.PROTOCOL_SSLv3`> with module 'ssl' has no attribute 'PROTOCOL_SSLv3'
1700) <DataObjStr:: :py:data:`ssl.Purpose.CLIENT_AUTH`> with module 'ssl' has no attribute 'Purpose.CLIENT_AUTH'
1701) <DataObjStr:: :py:data:`ssl.Purpose.SERVER_AUTH`> with module 'ssl' has no attribute 'Purpose.SERVER_AUTH'
1702) <DataObjStr:: :py:attribute:`ssl.SSLCertVerificationError.verify_code`> with type object 'SSLCertVerificationError' has no attribute 'verify_code'
1703) <DataObjStr:: :py:attribute:`ssl.SSLCertVerificationError.verify_message`> with type object 'SSLCertVerificationError' has no attribute 'verify_message'
1704) <DataObjStr:: :py:attribute:`ssl.SSLError.library`> with type object 'ssl.SSLError' has no attribute 'library'
1705) <DataObjStr:: :py:attribute:`ssl.SSLError.reason`> with type object 'ssl.SSLError' has no attribute 'reason'
1706) <DataObjStr:: :py:attribute:`ssl.SSLSocket.server_hostname`> with type object 'SSLSocket' has no attribute 'server_hostname'
1707) <DataObjStr:: :py:attribute:`ssl.SSLSocket.server_side`> with type object 'SSLSocket' has no attribute 'server_side'
1708) <DataObjStr:: :py:function:`ssl.enum_certificates`> with module 'ssl' has no attribute 'enum_certificates'
1709) <DataObjStr:: :py:function:`ssl.enum_crls`> with module 'ssl' has no attribute 'enum_crls'
1710) <DataObjStr:: :py:data:`stat.IO_REPARSE_TAG_APPEXECLINK`> with module 'stat' has no attribute 'IO_REPARSE_TAG_APPEXECLINK'
1711) <DataObjStr:: :py:data:`stat.IO_REPARSE_TAG_MOUNT_POINT`> with module 'stat' has no attribute 'IO_REPARSE_TAG_MOUNT_POINT'
1712) <DataObjStr:: :py:data:`stat.IO_REPARSE_TAG_SYMLINK`> with module 'stat' has no attribute 'IO_REPARSE_TAG_SYMLINK'
1713) <DataObjStr:: :py:attribute:`string.Template.template`> with type object 'Template' has no attribute 'template'
1714) <DataObjStr:: :py:data:`subprocess.ABOVE_NORMAL_PRIORITY_CLASS`> with module 'subprocess' has no attribute 'ABOVE_NORMAL_PRIORITY_CLASS'
1715) <DataObjStr:: :py:data:`subprocess.BELOW_NORMAL_PRIORITY_CLASS`> with module 'subprocess' has no attribute 'BELOW_NORMAL_PRIORITY_CLASS'
1716) <DataObjStr:: :py:data:`subprocess.CREATE_BREAKAWAY_FROM_JOB`> with module 'subprocess' has no attribute 'CREATE_BREAKAWAY_FROM_JOB'
1717) <DataObjStr:: :py:data:`subprocess.CREATE_DEFAULT_ERROR_MODE`> with module 'subprocess' has no attribute 'CREATE_DEFAULT_ERROR_MODE'
1718) <DataObjStr:: :py:data:`subprocess.CREATE_NEW_CONSOLE`> with module 'subprocess' has no attribute 'CREATE_NEW_CONSOLE'
1719) <DataObjStr:: :py:data:`subprocess.CREATE_NEW_PROCESS_GROUP`> with module 'subprocess' has no attribute 'CREATE_NEW_PROCESS_GROUP'
1720) <DataObjStr:: :py:data:`subprocess.CREATE_NO_WINDOW`> with module 'subprocess' has no attribute 'CREATE_NO_WINDOW'
1721) <DataObjStr:: :py:attribute:`subprocess.CalledProcessError.cmd`> with type object 'CalledProcessError' has no attribute 'cmd'
1722) <DataObjStr:: :py:attribute:`subprocess.CalledProcessError.output`> with type object 'CalledProcessError' has no attribute 'output'
1723) <DataObjStr:: :py:attribute:`subprocess.CalledProcessError.returncode`> with type object 'CalledProcessError' has no attribute 'returncode'
1724) <DataObjStr:: :py:attribute:`subprocess.CalledProcessError.stderr`> with type object 'CalledProcessError' has no attribute 'stderr'
1725) <DataObjStr:: :py:attribute:`subprocess.CompletedProcess.args`> with type object 'CompletedProcess' has no attribute 'args'
1726) <DataObjStr:: :py:attribute:`subprocess.CompletedProcess.returncode`> with type object 'CompletedProcess' has no attribute 'returncode'
1727) <DataObjStr:: :py:attribute:`subprocess.CompletedProcess.stderr`> with type object 'CompletedProcess' has no attribute 'stderr'
1728) <DataObjStr:: :py:attribute:`subprocess.CompletedProcess.stdout`> with type object 'CompletedProcess' has no attribute 'stdout'
1729) <DataObjStr:: :py:data:`subprocess.DETACHED_PROCESS`> with module 'subprocess' has no attribute 'DETACHED_PROCESS'
1730) <DataObjStr:: :py:data:`subprocess.HIGH_PRIORITY_CLASS`> with module 'subprocess' has no attribute 'HIGH_PRIORITY_CLASS'
1731) <DataObjStr:: :py:data:`subprocess.IDLE_PRIORITY_CLASS`> with module 'subprocess' has no attribute 'IDLE_PRIORITY_CLASS'
1732) <DataObjStr:: :py:data:`subprocess.NORMAL_PRIORITY_CLASS`> with module 'subprocess' has no attribute 'NORMAL_PRIORITY_CLASS'
1733) <DataObjStr:: :py:attribute:`subprocess.Popen.args`> with type object 'Popen' has no attribute 'args'
1734) <DataObjStr:: :py:attribute:`subprocess.Popen.pid`> with type object 'Popen' has no attribute 'pid'
1735) <DataObjStr:: :py:attribute:`subprocess.Popen.returncode`> with type object 'Popen' has no attribute 'returncode'
1736) <DataObjStr:: :py:attribute:`subprocess.Popen.stderr`> with type object 'Popen' has no attribute 'stderr'
1737) <DataObjStr:: :py:attribute:`subprocess.Popen.stdin`> with type object 'Popen' has no attribute 'stdin'
1738) <DataObjStr:: :py:attribute:`subprocess.Popen.stdout`> with type object 'Popen' has no attribute 'stdout'
1739) <DataObjStr:: :py:data:`subprocess.REALTIME_PRIORITY_CLASS`> with module 'subprocess' has no attribute 'REALTIME_PRIORITY_CLASS'
1740) <DataObjStr:: :py:data:`subprocess.STARTF_USESHOWWINDOW`> with module 'subprocess' has no attribute 'STARTF_USESHOWWINDOW'
1741) <DataObjStr:: :py:data:`subprocess.STARTF_USESTDHANDLES`> with module 'subprocess' has no attribute 'STARTF_USESTDHANDLES'
1742) <DataObjStr:: :py:class:`subprocess.STARTUPINFO`> with module 'subprocess' has no attribute 'STARTUPINFO'
1743) <DataObjStr:: :py:attribute:`subprocess.STARTUPINFO.dwFlags`> with module 'subprocess' has no attribute 'STARTUPINFO'
1744) <DataObjStr:: :py:attribute:`subprocess.STARTUPINFO.hStdError`> with module 'subprocess' has no attribute 'STARTUPINFO'
1745) <DataObjStr:: :py:attribute:`subprocess.STARTUPINFO.hStdInput`> with module 'subprocess' has no attribute 'STARTUPINFO'
1746) <DataObjStr:: :py:attribute:`subprocess.STARTUPINFO.hStdOutput`> with module 'subprocess' has no attribute 'STARTUPINFO'
1747) <DataObjStr:: :py:attribute:`subprocess.STARTUPINFO.lpAttributeList`> with module 'subprocess' has no attribute 'STARTUPINFO'
1748) <DataObjStr:: :py:attribute:`subprocess.STARTUPINFO.wShowWindow`> with module 'subprocess' has no attribute 'STARTUPINFO'
1749) <DataObjStr:: :py:data:`subprocess.STD_ERROR_HANDLE`> with module 'subprocess' has no attribute 'STD_ERROR_HANDLE'
1750) <DataObjStr:: :py:data:`subprocess.STD_INPUT_HANDLE`> with module 'subprocess' has no attribute 'STD_INPUT_HANDLE'
1751) <DataObjStr:: :py:data:`subprocess.STD_OUTPUT_HANDLE`> with module 'subprocess' has no attribute 'STD_OUTPUT_HANDLE'
1752) <DataObjStr:: :py:data:`subprocess.SW_HIDE`> with module 'subprocess' has no attribute 'SW_HIDE'
1753) <DataObjStr:: :py:attribute:`subprocess.TimeoutExpired.cmd`> with type object 'TimeoutExpired' has no attribute 'cmd'
1754) <DataObjStr:: :py:attribute:`subprocess.TimeoutExpired.output`> with type object 'TimeoutExpired' has no attribute 'output'
1755) <DataObjStr:: :py:attribute:`subprocess.TimeoutExpired.stderr`> with type object 'TimeoutExpired' has no attribute 'stderr'
1756) <DataObjStr:: :py:attribute:`subprocess.TimeoutExpired.timeout`> with type object 'TimeoutExpired' has no attribute 'timeout'
1757) <DataObjStr:: :py:method:`sunau.AU_read.close`> with module 'sunau' has no attribute 'AU_read'
1758) <DataObjStr:: :py:method:`sunau.AU_read.getcompname`> with module 'sunau' has no attribute 'AU_read'
1759) <DataObjStr:: :py:method:`sunau.AU_read.getcomptype`> with module 'sunau' has no attribute 'AU_read'
1760) <DataObjStr:: :py:method:`sunau.AU_read.getframerate`> with module 'sunau' has no attribute 'AU_read'
1761) <DataObjStr:: :py:method:`sunau.AU_read.getmark`> with module 'sunau' has no attribute 'AU_read'
1762) <DataObjStr:: :py:method:`sunau.AU_read.getmarkers`> with module 'sunau' has no attribute 'AU_read'
1763) <DataObjStr:: :py:method:`sunau.AU_read.getnchannels`> with module 'sunau' has no attribute 'AU_read'
1764) <DataObjStr:: :py:method:`sunau.AU_read.getnframes`> with module 'sunau' has no attribute 'AU_read'
1765) <DataObjStr:: :py:method:`sunau.AU_read.getparams`> with module 'sunau' has no attribute 'AU_read'
1766) <DataObjStr:: :py:method:`sunau.AU_read.getsampwidth`> with module 'sunau' has no attribute 'AU_read'
1767) <DataObjStr:: :py:method:`sunau.AU_read.readframes`> with module 'sunau' has no attribute 'AU_read'
1768) <DataObjStr:: :py:method:`sunau.AU_read.rewind`> with module 'sunau' has no attribute 'AU_read'
1769) <DataObjStr:: :py:method:`sunau.AU_read.setpos`> with module 'sunau' has no attribute 'AU_read'
1770) <DataObjStr:: :py:method:`sunau.AU_read.tell`> with module 'sunau' has no attribute 'AU_read'
1771) <DataObjStr:: :py:method:`sunau.AU_write.close`> with module 'sunau' has no attribute 'AU_write'
1772) <DataObjStr:: :py:method:`sunau.AU_write.setcomptype`> with module 'sunau' has no attribute 'AU_write'
1773) <DataObjStr:: :py:method:`sunau.AU_write.setframerate`> with module 'sunau' has no attribute 'AU_write'
1774) <DataObjStr:: :py:method:`sunau.AU_write.setnchannels`> with module 'sunau' has no attribute 'AU_write'
1775) <DataObjStr:: :py:method:`sunau.AU_write.setnframes`> with module 'sunau' has no attribute 'AU_write'
1776) <DataObjStr:: :py:method:`sunau.AU_write.setparams`> with module 'sunau' has no attribute 'AU_write'
1777) <DataObjStr:: :py:method:`sunau.AU_write.setsampwidth`> with module 'sunau' has no attribute 'AU_write'
1778) <DataObjStr:: :py:method:`sunau.AU_write.tell`> with module 'sunau' has no attribute 'AU_write'
1779) <DataObjStr:: :py:method:`sunau.AU_write.writeframes`> with module 'sunau' has no attribute 'AU_write'
1780) <DataObjStr:: :py:method:`sunau.AU_write.writeframesraw`> with module 'sunau' has no attribute 'AU_write'
1781) <DataObjStr:: :py:function:`sys._enablelegacywindowsfsencoding`> with module 'sys' has no attribute '_enablelegacywindowsfsencoding'
1782) <DataObjStr:: :py:data:`sys.dllhandle`> with module 'sys' has no attribute 'dllhandle'
1783) <DataObjStr:: :py:function:`sys.getandroidapilevel`> with module 'sys' has no attribute 'getandroidapilevel'
1784) <DataObjStr:: :py:function:`sys.getwindowsversion`> with module 'sys' has no attribute 'getwindowsversion'
1785) <DataObjStr:: :py:data:`sys.last_traceback`> with module 'sys' has no attribute 'last_traceback'
1786) <DataObjStr:: :py:data:`sys.last_type`> with module 'sys' has no attribute 'last_type'
1787) <DataObjStr:: :py:data:`sys.last_value`> with module 'sys' has no attribute 'last_value'
1788) <DataObjStr:: :py:data:`sys.ps1`> with module 'sys' has no attribute 'ps1'
1789) <DataObjStr:: :py:data:`sys.ps2`> with module 'sys' has no attribute 'ps2'
1790) <DataObjStr:: :py:data:`sys.tracebacklimit`> with module 'sys' has no attribute 'tracebacklimit'
1791) <DataObjStr:: :py:data:`sys.winver`> with module 'sys' has no attribute 'winver'
1792) <DataObjStr:: :py:attribute:`tarfile.TarFile.pax_headers`> with type object 'TarFile' has no attribute 'pax_headers'
1793) <DataObjStr:: :py:module:`test`> with No module named 'test'
1794) <DataObjStr:: :py:module:`test.support`> with No module named 'test'
1795) <DataObjStr:: :py:data:`test.support.ALWAYS_EQ`> with No module named 'test'
1796) <DataObjStr:: :py:class:`test.support.BasicTestRunner`> with No module named 'test'
1797) <DataObjStr:: :py:method:`test.support.BasicTestRunner.run`> with No module named 'test'
1798) <DataObjStr:: :py:data:`test.support.HAVE_DOCSTRINGS`> with No module named 'test'
1799) <DataObjStr:: :py:data:`test.support.INTERNET_TIMEOUT`> with No module named 'test'
1800) <DataObjStr:: :py:data:`test.support.LARGEST`> with No module named 'test'
1801) <DataObjStr:: :py:data:`test.support.LONG_TIMEOUT`> with No module named 'test'
1802) <DataObjStr:: :py:data:`test.support.LOOPBACK_TIMEOUT`> with No module named 'test'
1803) <DataObjStr:: :py:data:`test.support.MAX_Py_ssize_t`> with No module named 'test'
1804) <DataObjStr:: :py:data:`test.support.MISSING_C_DOCSTRINGS`> with No module named 'test'
1805) <DataObjStr:: :py:class:`test.support.Matcher`> with No module named 'test'
1806) <DataObjStr:: :py:method:`test.support.Matcher.match_value`> with No module named 'test'
1807) <DataObjStr:: :py:method:`test.support.Matcher.matches`> with No module named 'test'
1808) <DataObjStr:: :py:data:`test.support.NEVER_EQ`> with No module named 'test'
1809) <DataObjStr:: :py:data:`test.support.PGO`> with No module named 'test'
1810) <DataObjStr:: :py:data:`test.support.PIPE_MAX_SIZE`> with No module named 'test'
1811) <DataObjStr:: :py:exception:`test.support.ResourceDenied`> with No module named 'test'
1812) <DataObjStr:: :py:data:`test.support.SHORT_TIMEOUT`> with No module named 'test'
1813) <DataObjStr:: :py:data:`test.support.SMALLEST`> with No module named 'test'
1814) <DataObjStr:: :py:data:`test.support.SOCK_MAX_SIZE`> with No module named 'test'
1815) <DataObjStr:: :py:class:`test.support.SaveSignals`> with No module named 'test'
1816) <DataObjStr:: :py:class:`test.support.SuppressCrashReport`> with No module named 'test'
1817) <DataObjStr:: :py:data:`test.support.TEST_DATA_DIR`> with No module named 'test'
1818) <DataObjStr:: :py:data:`test.support.TEST_HOME_DIR`> with No module named 'test'
1819) <DataObjStr:: :py:data:`test.support.TEST_HTTP_URL`> with No module named 'test'
1820) <DataObjStr:: :py:data:`test.support.TEST_SUPPORT_DIR`> with No module named 'test'
1821) <DataObjStr:: :py:exception:`test.support.TestFailed`> with No module named 'test'
1822) <DataObjStr:: :py:function:`test.support.anticipate_failure`> with No module named 'test'
1823) <DataObjStr:: :py:function:`test.support.args_from_interpreter_flags`> with No module named 'test'
1824) <DataObjStr:: :py:function:`test.support.bigaddrspacetest`> with No module named 'test'
1825) <DataObjStr:: :py:function:`test.support.bigmemtest`> with No module named 'test'
1826) <DataObjStr:: :py:module:`test.support.bytecode_helper`> with No module named 'test'
1827) <DataObjStr:: :py:class:`test.support.bytecode_helper.BytecodeTestCase`> with No module named 'test'
1828) <DataObjStr:: :py:method:`test.support.bytecode_helper.BytecodeTestCase.assertInBytecode`> with No module named 'test'
1829) <DataObjStr:: :py:method:`test.support.bytecode_helper.BytecodeTestCase.assertNotInBytecode`> with No module named 'test'
1830) <DataObjStr:: :py:method:`test.support.bytecode_helper.BytecodeTestCase.get_disassembly_as_string`> with No module named 'test'
1831) <DataObjStr:: :py:function:`test.support.calcobjsize`> with No module named 'test'
1832) <DataObjStr:: :py:function:`test.support.calcvobjsize`> with No module named 'test'
1833) <DataObjStr:: :py:function:`test.support.captured_stderr`> with No module named 'test'
1834) <DataObjStr:: :py:function:`test.support.captured_stdin`> with No module named 'test'
1835) <DataObjStr:: :py:function:`test.support.captured_stdout`> with No module named 'test'
1836) <DataObjStr:: :py:function:`test.support.catch_unraisable_exception`> with No module named 'test'
1837) <DataObjStr:: :py:function:`test.support.check__all__`> with No module named 'test'
1838) <DataObjStr:: :py:function:`test.support.check_disallow_instantiation`> with No module named 'test'
1839) <DataObjStr:: :py:function:`test.support.check_free_after_iterating`> with No module named 'test'
1840) <DataObjStr:: :py:function:`test.support.check_impl_detail`> with No module named 'test'
1841) <DataObjStr:: :py:function:`test.support.check_syntax_error`> with No module named 'test'
1842) <DataObjStr:: :py:function:`test.support.checksizeof`> with No module named 'test'
1843) <DataObjStr:: :py:function:`test.support.cpython_only`> with No module named 'test'
1844) <DataObjStr:: :py:function:`test.support.detect_api_mismatch`> with No module named 'test'
1845) <DataObjStr:: :py:function:`test.support.disable_faulthandler`> with No module named 'test'
1846) <DataObjStr:: :py:function:`test.support.disable_gc`> with No module named 'test'
1847) <DataObjStr:: :py:function:`test.support.findfile`> with No module named 'test'
1848) <DataObjStr:: :py:function:`test.support.gc_collect`> with No module named 'test'
1849) <DataObjStr:: :py:function:`test.support.get_attribute`> with No module named 'test'
1850) <DataObjStr:: :py:function:`test.support.get_original_stdout`> with No module named 'test'
1851) <DataObjStr:: :py:function:`test.support.impl_detail`> with No module named 'test'
1852) <DataObjStr:: :py:module:`test.support.import_helper`> with No module named 'test'
1853) <DataObjStr:: :py:class:`test.support.import_helper.CleanImport`> with No module named 'test'
1854) <DataObjStr:: :py:class:`test.support.import_helper.DirsOnSysPath`> with No module named 'test'
1855) <DataObjStr:: :py:function:`test.support.import_helper.forget`> with No module named 'test'
1856) <DataObjStr:: :py:function:`test.support.import_helper.import_fresh_module`> with No module named 'test'
1857) <DataObjStr:: :py:function:`test.support.import_helper.import_module`> with No module named 'test'
1858) <DataObjStr:: :py:function:`test.support.import_helper.make_legacy_pyc`> with No module named 'test'
1859) <DataObjStr:: :py:function:`test.support.import_helper.modules_cleanup`> with No module named 'test'
1860) <DataObjStr:: :py:function:`test.support.import_helper.modules_setup`> with No module named 'test'
1861) <DataObjStr:: :py:function:`test.support.import_helper.unload`> with No module named 'test'
1862) <DataObjStr:: :py:data:`test.support.is_android`> with No module named 'test'
1863) <DataObjStr:: :py:data:`test.support.is_jython`> with No module named 'test'
1864) <DataObjStr:: :py:function:`test.support.is_resource_enabled`> with No module named 'test'
1865) <DataObjStr:: :py:function:`test.support.load_package_tests`> with No module named 'test'
1866) <DataObjStr:: :py:function:`test.support.match_test`> with No module named 'test'
1867) <DataObjStr:: :py:data:`test.support.max_memuse`> with No module named 'test'
1868) <DataObjStr:: :py:function:`test.support.missing_compiler_executable`> with No module named 'test'
1869) <DataObjStr:: :py:function:`test.support.no_tracing`> with No module named 'test'
1870) <DataObjStr:: :py:function:`test.support.open_urlresource`> with No module named 'test'
1871) <DataObjStr:: :py:function:`test.support.optim_args_from_interpreter_flags`> with No module named 'test'
1872) <DataObjStr:: :py:module:`test.support.os_helper`> with No module named 'test'
1873) <DataObjStr:: :py:class:`test.support.os_helper.EnvironmentVarGuard`> with No module named 'test'
1874) <DataObjStr:: :py:method:`test.support.os_helper.EnvironmentVarGuard.set`> with No module named 'test'
1875) <DataObjStr:: :py:method:`test.support.os_helper.EnvironmentVarGuard.unset`> with No module named 'test'
1876) <DataObjStr:: :py:data:`test.support.os_helper.FS_NONASCII`> with No module named 'test'
1877) <DataObjStr:: :py:class:`test.support.os_helper.FakePath`> with No module named 'test'
1878) <DataObjStr:: :py:data:`test.support.os_helper.SAVEDCWD`> with No module named 'test'
1879) <DataObjStr:: :py:data:`test.support.os_helper.TESTFN`> with No module named 'test'
1880) <DataObjStr:: :py:data:`test.support.os_helper.TESTFN_NONASCII`> with No module named 'test'
1881) <DataObjStr:: :py:data:`test.support.os_helper.TESTFN_UNDECODABLE`> with No module named 'test'
1882) <DataObjStr:: :py:data:`test.support.os_helper.TESTFN_UNENCODABLE`> with No module named 'test'
1883) <DataObjStr:: :py:data:`test.support.os_helper.TESTFN_UNICODE`> with No module named 'test'
1884) <DataObjStr:: :py:function:`test.support.os_helper.can_symlink`> with No module named 'test'
1885) <DataObjStr:: :py:function:`test.support.os_helper.can_xattr`> with No module named 'test'
1886) <DataObjStr:: :py:function:`test.support.os_helper.change_cwd`> with No module named 'test'
1887) <DataObjStr:: :py:function:`test.support.os_helper.create_empty_file`> with No module named 'test'
1888) <DataObjStr:: :py:function:`test.support.os_helper.fd_count`> with No module named 'test'
1889) <DataObjStr:: :py:function:`test.support.os_helper.fs_is_case_insensitive`> with No module named 'test'
1890) <DataObjStr:: :py:function:`test.support.os_helper.make_bad_fd`> with No module named 'test'
1891) <DataObjStr:: :py:function:`test.support.os_helper.rmdir`> with No module named 'test'
1892) <DataObjStr:: :py:function:`test.support.os_helper.rmtree`> with No module named 'test'
1893) <DataObjStr:: :py:function:`test.support.os_helper.skip_unless_symlink`> with No module named 'test'
1894) <DataObjStr:: :py:function:`test.support.os_helper.skip_unless_xattr`> with No module named 'test'
1895) <DataObjStr:: :py:function:`test.support.os_helper.temp_cwd`> with No module named 'test'
1896) <DataObjStr:: :py:function:`test.support.os_helper.temp_dir`> with No module named 'test'
1897) <DataObjStr:: :py:function:`test.support.os_helper.temp_umask`> with No module named 'test'
1898) <DataObjStr:: :py:function:`test.support.os_helper.unlink`> with No module named 'test'
1899) <DataObjStr:: :py:function:`test.support.patch`> with No module named 'test'
1900) <DataObjStr:: :py:function:`test.support.print_warning`> with No module named 'test'
1901) <DataObjStr:: :py:function:`test.support.python_is_optimized`> with No module named 'test'
1902) <DataObjStr:: :py:data:`test.support.real_max_memuse`> with No module named 'test'
1903) <DataObjStr:: :py:function:`test.support.reap_children`> with No module named 'test'
1904) <DataObjStr:: :py:function:`test.support.record_original_stdout`> with No module named 'test'
1905) <DataObjStr:: :py:function:`test.support.refcount_test`> with No module named 'test'
1906) <DataObjStr:: :py:function:`test.support.requires`> with No module named 'test'
1907) <DataObjStr:: :py:function:`test.support.requires_IEEE_754`> with No module named 'test'
1908) <DataObjStr:: :py:function:`test.support.requires_bz2`> with No module named 'test'
1909) <DataObjStr:: :py:function:`test.support.requires_docstrings`> with No module named 'test'
1910) <DataObjStr:: :py:function:`test.support.requires_freebsd_version`> with No module named 'test'
1911) <DataObjStr:: :py:function:`test.support.requires_gzip`> with No module named 'test'
1912) <DataObjStr:: :py:function:`test.support.requires_linux_version`> with No module named 'test'
1913) <DataObjStr:: :py:function:`test.support.requires_lzma`> with No module named 'test'
1914) <DataObjStr:: :py:function:`test.support.requires_mac_version`> with No module named 'test'
1915) <DataObjStr:: :py:function:`test.support.requires_resource`> with No module named 'test'
1916) <DataObjStr:: :py:function:`test.support.requires_zlib`> with No module named 'test'
1917) <DataObjStr:: :py:function:`test.support.run_doctest`> with No module named 'test'
1918) <DataObjStr:: :py:function:`test.support.run_in_subinterp`> with No module named 'test'
1919) <DataObjStr:: :py:function:`test.support.run_unittest`> with No module named 'test'
1920) <DataObjStr:: :py:function:`test.support.run_with_locale`> with No module named 'test'
1921) <DataObjStr:: :py:function:`test.support.run_with_tz`> with No module named 'test'
1922) <DataObjStr:: :py:module:`test.support.script_helper`> with No module named 'test'
1923) <DataObjStr:: :py:function:`test.support.script_helper.assert_python_failure`> with No module named 'test'
1924) <DataObjStr:: :py:function:`test.support.script_helper.assert_python_ok`> with No module named 'test'
1925) <DataObjStr:: :py:function:`test.support.script_helper.interpreter_requires_environment`> with No module named 'test'
1926) <DataObjStr:: :py:function:`test.support.script_helper.kill_python`> with No module named 'test'
1927) <DataObjStr:: :py:function:`test.support.script_helper.make_pkg`> with No module named 'test'
1928) <DataObjStr:: :py:function:`test.support.script_helper.make_script`> with No module named 'test'
1929) <DataObjStr:: :py:function:`test.support.script_helper.make_zip_pkg`> with No module named 'test'
1930) <DataObjStr:: :py:function:`test.support.script_helper.make_zip_script`> with No module named 'test'
1931) <DataObjStr:: :py:function:`test.support.script_helper.run_python_until_end`> with No module named 'test'
1932) <DataObjStr:: :py:function:`test.support.script_helper.spawn_python`> with No module named 'test'
1933) <DataObjStr:: :py:function:`test.support.set_match_tests`> with No module named 'test'
1934) <DataObjStr:: :py:function:`test.support.set_memlimit`> with No module named 'test'
1935) <DataObjStr:: :py:function:`test.support.setswitchinterval`> with No module named 'test'
1936) <DataObjStr:: :py:function:`test.support.skip_if_broken_multiprocessing_synchronize`> with No module named 'test'
1937) <DataObjStr:: :py:module:`test.support.socket_helper`> with No module named 'test'
1938) <DataObjStr:: :py:data:`test.support.socket_helper.IPV6_ENABLED`> with No module named 'test'
1939) <DataObjStr:: :py:function:`test.support.socket_helper.bind_port`> with No module named 'test'
1940) <DataObjStr:: :py:function:`test.support.socket_helper.bind_unix_socket`> with No module named 'test'
1941) <DataObjStr:: :py:function:`test.support.socket_helper.find_unused_port`> with No module named 'test'
1942) <DataObjStr:: :py:function:`test.support.socket_helper.skip_unless_bind_unix_socket`> with No module named 'test'
1943) <DataObjStr:: :py:function:`test.support.socket_helper.transient_internet`> with No module named 'test'
1944) <DataObjStr:: :py:function:`test.support.sortdict`> with No module named 'test'
1945) <DataObjStr:: :py:function:`test.support.swap_attr`> with No module named 'test'
1946) <DataObjStr:: :py:function:`test.support.swap_item`> with No module named 'test'
1947) <DataObjStr:: :py:function:`test.support.system_must_validate_cert`> with No module named 'test'
1948) <DataObjStr:: :py:module:`test.support.threading_helper`> with No module named 'test'
1949) <DataObjStr:: :py:function:`test.support.threading_helper.catch_threading_exception`> with No module named 'test'
1950) <DataObjStr:: :py:function:`test.support.threading_helper.join_thread`> with No module named 'test'
1951) <DataObjStr:: :py:function:`test.support.threading_helper.reap_threads`> with No module named 'test'
1952) <DataObjStr:: :py:function:`test.support.threading_helper.start_threads`> with No module named 'test'
1953) <DataObjStr:: :py:function:`test.support.threading_helper.threading_cleanup`> with No module named 'test'
1954) <DataObjStr:: :py:function:`test.support.threading_helper.threading_setup`> with No module named 'test'
1955) <DataObjStr:: :py:function:`test.support.threading_helper.wait_threads_exit`> with No module named 'test'
1956) <DataObjStr:: :py:data:`test.support.unix_shell`> with No module named 'test'
1957) <DataObjStr:: :py:data:`test.support.verbose`> with No module named 'test'
1958) <DataObjStr:: :py:function:`test.support.wait_process`> with No module named 'test'
1959) <DataObjStr:: :py:module:`test.support.warnings_helper`> with No module named 'test'
1960) <DataObjStr:: :py:class:`test.support.warnings_helper.WarningsRecorder`> with No module named 'test'
1961) <DataObjStr:: :py:function:`test.support.warnings_helper.check_no_resource_warning`> with No module named 'test'
1962) <DataObjStr:: :py:function:`test.support.warnings_helper.check_syntax_warning`> with No module named 'test'
1963) <DataObjStr:: :py:function:`test.support.warnings_helper.check_warnings`> with No module named 'test'
1964) <DataObjStr:: :py:function:`test.support.with_pymalloc`> with No module named 'test'
1965) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.break_long_words`> with type object 'TextWrapper' has no attribute 'break_long_words'
1966) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.break_on_hyphens`> with type object 'TextWrapper' has no attribute 'break_on_hyphens'
1967) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.drop_whitespace`> with type object 'TextWrapper' has no attribute 'drop_whitespace'
1968) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.expand_tabs`> with type object 'TextWrapper' has no attribute 'expand_tabs'
1969) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.fix_sentence_endings`> with type object 'TextWrapper' has no attribute 'fix_sentence_endings'
1970) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.initial_indent`> with type object 'TextWrapper' has no attribute 'initial_indent'
1971) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.max_lines`> with type object 'TextWrapper' has no attribute 'max_lines'
1972) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.placeholder`> with type object 'TextWrapper' has no attribute 'placeholder'
1973) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.replace_whitespace`> with type object 'TextWrapper' has no attribute 'replace_whitespace'
1974) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.subsequent_indent`> with type object 'TextWrapper' has no attribute 'subsequent_indent'
1975) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.tabsize`> with type object 'TextWrapper' has no attribute 'tabsize'
1976) <DataObjStr:: :py:attribute:`textwrap.TextWrapper.width`> with type object 'TextWrapper' has no attribute 'width'
1977) <DataObjStr:: :py:method:`threading.Condition.acquire`> with type object 'Condition' has no attribute 'acquire'
1978) <DataObjStr:: :py:method:`threading.Condition.release`> with type object 'Condition' has no attribute 'release'
1979) <DataObjStr:: :py:method:`threading.Lock.acquire`> with 'builtin_function_or_method' object has no attribute 'acquire'
1980) <DataObjStr:: :py:method:`threading.Lock.locked`> with 'builtin_function_or_method' object has no attribute 'locked'
1981) <DataObjStr:: :py:method:`threading.Lock.release`> with 'builtin_function_or_method' object has no attribute 'release'
1982) <DataObjStr:: :py:method:`threading.RLock.acquire`> with 'function' object has no attribute 'acquire'
1983) <DataObjStr:: :py:method:`threading.RLock.release`> with 'function' object has no attribute 'release'
1984) <DataObjStr:: :py:data:`time.CLOCK_HIGHRES`> with module 'time' has no attribute 'CLOCK_HIGHRES'
1985) <DataObjStr:: :py:data:`time.CLOCK_PROF`> with module 'time' has no attribute 'CLOCK_PROF'
1986) <DataObjStr:: :py:data:`time.CLOCK_UPTIME`> with module 'time' has no attribute 'CLOCK_UPTIME'
1987) <DataObjStr:: :py:data:`time.CLOCK_UPTIME_RAW`> with module 'time' has no attribute 'CLOCK_UPTIME_RAW'
1988) <DataObjStr:: :py:method:`tkinter.Widget.tk.createfilehandler`> with module 'tkinter' has no attribute 'Widget.tk'
1989) <DataObjStr:: :py:method:`tkinter.Widget.tk.deletefilehandler`> with module 'tkinter' has no attribute 'Widget.tk'
1990) <DataObjStr:: :py:class:`tkinter.colorchooser.Chooser`> with module 'tkinter' has no attribute 'colorchooser.Chooser'
1991) <DataObjStr:: :py:function:`tkinter.colorchooser.askcolor`> with module 'tkinter' has no attribute 'colorchooser.askcolor'
1992) <DataObjStr:: :py:class:`tkinter.commondialog.Dialog`> with module 'tkinter' has no attribute 'commondialog.Dialog'
1993) <DataObjStr:: :py:method:`tkinter.commondialog.Dialog.show`> with module 'tkinter' has no attribute 'commondialog.Dialog'
1994) <DataObjStr:: :py:class:`tkinter.dnd.DndHandler`> with module 'tkinter' has no attribute 'dnd.DndHandler'
1995) <DataObjStr:: :py:method:`tkinter.dnd.DndHandler.cancel`> with module 'tkinter' has no attribute 'dnd.DndHandler'
1996) <DataObjStr:: :py:method:`tkinter.dnd.DndHandler.finish`> with module 'tkinter' has no attribute 'dnd.DndHandler'
1997) <DataObjStr:: :py:method:`tkinter.dnd.DndHandler.on_motion`> with module 'tkinter' has no attribute 'dnd.DndHandler'
1998) <DataObjStr:: :py:method:`tkinter.dnd.DndHandler.on_release`> with module 'tkinter' has no attribute 'dnd.DndHandler'
1999) <DataObjStr:: :py:function:`tkinter.dnd.dnd_start`> with module 'tkinter' has no attribute 'dnd.dnd_start'
2000) <DataObjStr:: :py:class:`tkinter.filedialog.Directory`> with module 'tkinter' has no attribute 'filedialog.Directory'
2001) <DataObjStr:: :py:class:`tkinter.filedialog.FileDialog`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2002) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.cancel_command`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2003) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.dirs_double_event`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2004) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.dirs_select_event`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2005) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.files_double_event`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2006) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.files_select_event`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2007) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.filter_command`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2008) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.get_filter`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2009) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.get_selection`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2010) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.go`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2011) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.ok_event`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2012) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.quit`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2013) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.set_filter`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2014) <DataObjStr:: :py:method:`tkinter.filedialog.FileDialog.set_selection`> with module 'tkinter' has no attribute 'filedialog.FileDialog'
2015) <DataObjStr:: :py:class:`tkinter.filedialog.LoadFileDialog`> with module 'tkinter' has no attribute 'filedialog.LoadFileDialog'
2016) <DataObjStr:: :py:method:`tkinter.filedialog.LoadFileDialog.ok_command`> with module 'tkinter' has no attribute 'filedialog.LoadFileDialog'
2017) <DataObjStr:: :py:class:`tkinter.filedialog.Open`> with module 'tkinter' has no attribute 'filedialog.Open'
2018) <DataObjStr:: :py:class:`tkinter.filedialog.SaveAs`> with module 'tkinter' has no attribute 'filedialog.SaveAs'
2019) <DataObjStr:: :py:class:`tkinter.filedialog.SaveFileDialog`> with module 'tkinter' has no attribute 'filedialog.SaveFileDialog'
2020) <DataObjStr:: :py:method:`tkinter.filedialog.SaveFileDialog.ok_command`> with module 'tkinter' has no attribute 'filedialog.SaveFileDialog'
2021) <DataObjStr:: :py:function:`tkinter.filedialog.askdirectory`> with module 'tkinter' has no attribute 'filedialog.askdirectory'
2022) <DataObjStr:: :py:function:`tkinter.filedialog.askopenfile`> with module 'tkinter' has no attribute 'filedialog.askopenfile'
2023) <DataObjStr:: :py:function:`tkinter.filedialog.askopenfilename`> with module 'tkinter' has no attribute 'filedialog.askopenfilename'
2024) <DataObjStr:: :py:function:`tkinter.filedialog.askopenfilenames`> with module 'tkinter' has no attribute 'filedialog.askopenfilenames'
2025) <DataObjStr:: :py:function:`tkinter.filedialog.askopenfiles`> with module 'tkinter' has no attribute 'filedialog.askopenfiles'
2026) <DataObjStr:: :py:function:`tkinter.filedialog.asksaveasfile`> with module 'tkinter' has no attribute 'filedialog.asksaveasfile'
2027) <DataObjStr:: :py:function:`tkinter.filedialog.asksaveasfilename`> with module 'tkinter' has no attribute 'filedialog.asksaveasfilename'
2028) <DataObjStr:: :py:data:`tkinter.font.BOLD`> with module 'tkinter' has no attribute 'font.BOLD'
2029) <DataObjStr:: :py:class:`tkinter.font.Font`> with module 'tkinter' has no attribute 'font.Font'
2030) <DataObjStr:: :py:method:`tkinter.font.Font.actual`> with module 'tkinter' has no attribute 'font.Font'
2031) <DataObjStr:: :py:method:`tkinter.font.Font.cget`> with module 'tkinter' has no attribute 'font.Font'
2032) <DataObjStr:: :py:method:`tkinter.font.Font.config`> with module 'tkinter' has no attribute 'font.Font'
2033) <DataObjStr:: :py:method:`tkinter.font.Font.copy`> with module 'tkinter' has no attribute 'font.Font'
2034) <DataObjStr:: :py:method:`tkinter.font.Font.measure`> with module 'tkinter' has no attribute 'font.Font'
2035) <DataObjStr:: :py:method:`tkinter.font.Font.metrics`> with module 'tkinter' has no attribute 'font.Font'
2036) <DataObjStr:: :py:data:`tkinter.font.ITALIC`> with module 'tkinter' has no attribute 'font.ITALIC'
2037) <DataObjStr:: :py:data:`tkinter.font.NORMAL`> with module 'tkinter' has no attribute 'font.NORMAL'
2038) <DataObjStr:: :py:data:`tkinter.font.ROMAN`> with module 'tkinter' has no attribute 'font.ROMAN'
2039) <DataObjStr:: :py:function:`tkinter.font.families`> with module 'tkinter' has no attribute 'font.families'
2040) <DataObjStr:: :py:function:`tkinter.font.names`> with module 'tkinter' has no attribute 'font.names'
2041) <DataObjStr:: :py:function:`tkinter.font.nametofont`> with module 'tkinter' has no attribute 'font.nametofont'
2042) <DataObjStr:: :py:class:`tkinter.messagebox.Message`> with module 'tkinter' has no attribute 'messagebox.Message'
2043) <DataObjStr:: :py:class:`tkinter.scrolledtext.ScrolledText`> with module 'tkinter' has no attribute 'scrolledtext.ScrolledText'
2044) <DataObjStr:: :py:attribute:`tkinter.scrolledtext.ScrolledText.frame`> with module 'tkinter' has no attribute 'scrolledtext.ScrolledText'
2045) <DataObjStr:: :py:attribute:`tkinter.scrolledtext.ScrolledText.vbar`> with module 'tkinter' has no attribute 'scrolledtext.ScrolledText'
2046) <DataObjStr:: :py:class:`tkinter.simpledialog.Dialog`> with module 'tkinter' has no attribute 'simpledialog.Dialog'
2047) <DataObjStr:: :py:method:`tkinter.simpledialog.Dialog.body`> with module 'tkinter' has no attribute 'simpledialog.Dialog'
2048) <DataObjStr:: :py:method:`tkinter.simpledialog.Dialog.buttonbox`> with module 'tkinter' has no attribute 'simpledialog.Dialog'
2049) <DataObjStr:: :py:function:`tkinter.simpledialog.askfloat`> with module 'tkinter' has no attribute 'simpledialog.askfloat'
2050) <DataObjStr:: :py:function:`tkinter.simpledialog.askinteger`> with module 'tkinter' has no attribute 'simpledialog.askinteger'
2051) <DataObjStr:: :py:function:`tkinter.simpledialog.askstring`> with module 'tkinter' has no attribute 'simpledialog.askstring'
2052) <DataObjStr:: :py:class:`tkinter.tix.Balloon`> with module 'tkinter' has no attribute 'tix.Balloon'
2053) <DataObjStr:: :py:class:`tkinter.tix.ButtonBox`> with module 'tkinter' has no attribute 'tix.ButtonBox'
2054) <DataObjStr:: :py:class:`tkinter.tix.CheckList`> with module 'tkinter' has no attribute 'tix.CheckList'
2055) <DataObjStr:: :py:class:`tkinter.tix.ComboBox`> with module 'tkinter' has no attribute 'tix.ComboBox'
2056) <DataObjStr:: :py:class:`tkinter.tix.Control`> with module 'tkinter' has no attribute 'tix.Control'
2057) <DataObjStr:: :py:class:`tkinter.tix.DirList`> with module 'tkinter' has no attribute 'tix.DirList'
2058) <DataObjStr:: :py:class:`tkinter.tix.DirSelectBox`> with module 'tkinter' has no attribute 'tix.DirSelectBox'
2059) <DataObjStr:: :py:class:`tkinter.tix.DirSelectDialog`> with module 'tkinter' has no attribute 'tix.DirSelectDialog'
2060) <DataObjStr:: :py:class:`tkinter.tix.DirTree`> with module 'tkinter' has no attribute 'tix.DirTree'
2061) <DataObjStr:: :py:class:`tkinter.tix.ExFileSelectBox`> with module 'tkinter' has no attribute 'tix.ExFileSelectBox'
2062) <DataObjStr:: :py:class:`tkinter.tix.FileEntry`> with module 'tkinter' has no attribute 'tix.FileEntry'
2063) <DataObjStr:: :py:class:`tkinter.tix.FileSelectBox`> with module 'tkinter' has no attribute 'tix.FileSelectBox'
2064) <DataObjStr:: :py:class:`tkinter.tix.Form`> with module 'tkinter' has no attribute 'tix.Form'
2065) <DataObjStr:: :py:class:`tkinter.tix.HList`> with module 'tkinter' has no attribute 'tix.HList'
2066) <DataObjStr:: :py:class:`tkinter.tix.InputOnly`> with module 'tkinter' has no attribute 'tix.InputOnly'
2067) <DataObjStr:: :py:class:`tkinter.tix.LabelEntry`> with module 'tkinter' has no attribute 'tix.LabelEntry'
2068) <DataObjStr:: :py:class:`tkinter.tix.LabelFrame`> with module 'tkinter' has no attribute 'tix.LabelFrame'
2069) <DataObjStr:: :py:class:`tkinter.tix.ListNoteBook`> with module 'tkinter' has no attribute 'tix.ListNoteBook'
2070) <DataObjStr:: :py:class:`tkinter.tix.Meter`> with module 'tkinter' has no attribute 'tix.Meter'
2071) <DataObjStr:: :py:class:`tkinter.tix.NoteBook`> with module 'tkinter' has no attribute 'tix.NoteBook'
2072) <DataObjStr:: :py:class:`tkinter.tix.OptionMenu`> with module 'tkinter' has no attribute 'tix.OptionMenu'
2073) <DataObjStr:: :py:class:`tkinter.tix.PanedWindow`> with module 'tkinter' has no attribute 'tix.PanedWindow'
2074) <DataObjStr:: :py:class:`tkinter.tix.PopupMenu`> with module 'tkinter' has no attribute 'tix.PopupMenu'
2075) <DataObjStr:: :py:class:`tkinter.tix.Select`> with module 'tkinter' has no attribute 'tix.Select'
2076) <DataObjStr:: :py:class:`tkinter.tix.StdButtonBox`> with module 'tkinter' has no attribute 'tix.StdButtonBox'
2077) <DataObjStr:: :py:class:`tkinter.tix.TList`> with module 'tkinter' has no attribute 'tix.TList'
2078) <DataObjStr:: :py:class:`tkinter.tix.Tk`> with module 'tkinter' has no attribute 'tix.Tk'
2079) <DataObjStr:: :py:class:`tkinter.tix.Tree`> with module 'tkinter' has no attribute 'tix.Tree'
2080) <DataObjStr:: :py:class:`tkinter.tix.tixCommand`> with module 'tkinter' has no attribute 'tix.tixCommand'
2081) <DataObjStr:: :py:method:`tkinter.tix.tixCommand.tix_addbitmapdir`> with module 'tkinter' has no attribute 'tix.tixCommand'
2082) <DataObjStr:: :py:method:`tkinter.tix.tixCommand.tix_cget`> with module 'tkinter' has no attribute 'tix.tixCommand'
2083) <DataObjStr:: :py:method:`tkinter.tix.tixCommand.tix_configure`> with module 'tkinter' has no attribute 'tix.tixCommand'
2084) <DataObjStr:: :py:method:`tkinter.tix.tixCommand.tix_filedialog`> with module 'tkinter' has no attribute 'tix.tixCommand'
2085) <DataObjStr:: :py:method:`tkinter.tix.tixCommand.tix_getbitmap`> with module 'tkinter' has no attribute 'tix.tixCommand'
2086) <DataObjStr:: :py:method:`tkinter.tix.tixCommand.tix_getimage`> with module 'tkinter' has no attribute 'tix.tixCommand'
2087) <DataObjStr:: :py:method:`tkinter.tix.tixCommand.tix_option_get`> with module 'tkinter' has no attribute 'tix.tixCommand'
2088) <DataObjStr:: :py:method:`tkinter.tix.tixCommand.tix_resetoptions`> with module 'tkinter' has no attribute 'tix.tixCommand'
2089) <DataObjStr:: :py:class:`tkinter.ttk.Combobox`> with module 'tkinter' has no attribute 'ttk.Combobox'
2090) <DataObjStr:: :py:method:`tkinter.ttk.Combobox.current`> with module 'tkinter' has no attribute 'ttk.Combobox'
2091) <DataObjStr:: :py:method:`tkinter.ttk.Combobox.get`> with module 'tkinter' has no attribute 'ttk.Combobox'
2092) <DataObjStr:: :py:method:`tkinter.ttk.Combobox.set`> with module 'tkinter' has no attribute 'ttk.Combobox'
2093) <DataObjStr:: :py:class:`tkinter.ttk.Notebook`> with module 'tkinter' has no attribute 'ttk.Notebook'
2094) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.add`> with module 'tkinter' has no attribute 'ttk.Notebook'
2095) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.enable_traversal`> with module 'tkinter' has no attribute 'ttk.Notebook'
2096) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.forget`> with module 'tkinter' has no attribute 'ttk.Notebook'
2097) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.hide`> with module 'tkinter' has no attribute 'ttk.Notebook'
2098) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.identify`> with module 'tkinter' has no attribute 'ttk.Notebook'
2099) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.index`> with module 'tkinter' has no attribute 'ttk.Notebook'
2100) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.insert`> with module 'tkinter' has no attribute 'ttk.Notebook'
2101) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.select`> with module 'tkinter' has no attribute 'ttk.Notebook'
2102) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.tab`> with module 'tkinter' has no attribute 'ttk.Notebook'
2103) <DataObjStr:: :py:method:`tkinter.ttk.Notebook.tabs`> with module 'tkinter' has no attribute 'ttk.Notebook'
2104) <DataObjStr:: :py:class:`tkinter.ttk.Progressbar`> with module 'tkinter' has no attribute 'ttk.Progressbar'
2105) <DataObjStr:: :py:method:`tkinter.ttk.Progressbar.start`> with module 'tkinter' has no attribute 'ttk.Progressbar'
2106) <DataObjStr:: :py:method:`tkinter.ttk.Progressbar.step`> with module 'tkinter' has no attribute 'ttk.Progressbar'
2107) <DataObjStr:: :py:method:`tkinter.ttk.Progressbar.stop`> with module 'tkinter' has no attribute 'ttk.Progressbar'
2108) <DataObjStr:: :py:class:`tkinter.ttk.Spinbox`> with module 'tkinter' has no attribute 'ttk.Spinbox'
2109) <DataObjStr:: :py:method:`tkinter.ttk.Spinbox.get`> with module 'tkinter' has no attribute 'ttk.Spinbox'
2110) <DataObjStr:: :py:method:`tkinter.ttk.Spinbox.set`> with module 'tkinter' has no attribute 'ttk.Spinbox'
2111) <DataObjStr:: :py:class:`tkinter.ttk.Style`> with module 'tkinter' has no attribute 'ttk.Style'
2112) <DataObjStr:: :py:method:`tkinter.ttk.Style.configure`> with module 'tkinter' has no attribute 'ttk.Style'
2113) <DataObjStr:: :py:method:`tkinter.ttk.Style.element_create`> with module 'tkinter' has no attribute 'ttk.Style'
2114) <DataObjStr:: :py:method:`tkinter.ttk.Style.element_names`> with module 'tkinter' has no attribute 'ttk.Style'
2115) <DataObjStr:: :py:method:`tkinter.ttk.Style.element_options`> with module 'tkinter' has no attribute 'ttk.Style'
2116) <DataObjStr:: :py:method:`tkinter.ttk.Style.layout`> with module 'tkinter' has no attribute 'ttk.Style'
2117) <DataObjStr:: :py:method:`tkinter.ttk.Style.lookup`> with module 'tkinter' has no attribute 'ttk.Style'
2118) <DataObjStr:: :py:method:`tkinter.ttk.Style.map`> with module 'tkinter' has no attribute 'ttk.Style'
2119) <DataObjStr:: :py:method:`tkinter.ttk.Style.theme_create`> with module 'tkinter' has no attribute 'ttk.Style'
2120) <DataObjStr:: :py:method:`tkinter.ttk.Style.theme_names`> with module 'tkinter' has no attribute 'ttk.Style'
2121) <DataObjStr:: :py:method:`tkinter.ttk.Style.theme_settings`> with module 'tkinter' has no attribute 'ttk.Style'
2122) <DataObjStr:: :py:method:`tkinter.ttk.Style.theme_use`> with module 'tkinter' has no attribute 'ttk.Style'
2123) <DataObjStr:: :py:class:`tkinter.ttk.Treeview`> with module 'tkinter' has no attribute 'ttk.Treeview'
2124) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.bbox`> with module 'tkinter' has no attribute 'ttk.Treeview'
2125) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.column`> with module 'tkinter' has no attribute 'ttk.Treeview'
2126) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.delete`> with module 'tkinter' has no attribute 'ttk.Treeview'
2127) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.detach`> with module 'tkinter' has no attribute 'ttk.Treeview'
2128) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.exists`> with module 'tkinter' has no attribute 'ttk.Treeview'
2129) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.focus`> with module 'tkinter' has no attribute 'ttk.Treeview'
2130) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.get_children`> with module 'tkinter' has no attribute 'ttk.Treeview'
2131) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.heading`> with module 'tkinter' has no attribute 'ttk.Treeview'
2132) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.identify`> with module 'tkinter' has no attribute 'ttk.Treeview'
2133) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.identify_column`> with module 'tkinter' has no attribute 'ttk.Treeview'
2134) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.identify_element`> with module 'tkinter' has no attribute 'ttk.Treeview'
2135) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.identify_region`> with module 'tkinter' has no attribute 'ttk.Treeview'
2136) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.identify_row`> with module 'tkinter' has no attribute 'ttk.Treeview'
2137) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.index`> with module 'tkinter' has no attribute 'ttk.Treeview'
2138) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.insert`> with module 'tkinter' has no attribute 'ttk.Treeview'
2139) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.item`> with module 'tkinter' has no attribute 'ttk.Treeview'
2140) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.move`> with module 'tkinter' has no attribute 'ttk.Treeview'
2141) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.next`> with module 'tkinter' has no attribute 'ttk.Treeview'
2142) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.parent`> with module 'tkinter' has no attribute 'ttk.Treeview'
2143) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.prev`> with module 'tkinter' has no attribute 'ttk.Treeview'
2144) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.reattach`> with module 'tkinter' has no attribute 'ttk.Treeview'
2145) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.see`> with module 'tkinter' has no attribute 'ttk.Treeview'
2146) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.selection`> with module 'tkinter' has no attribute 'ttk.Treeview'
2147) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.selection_add`> with module 'tkinter' has no attribute 'ttk.Treeview'
2148) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.selection_remove`> with module 'tkinter' has no attribute 'ttk.Treeview'
2149) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.selection_set`> with module 'tkinter' has no attribute 'ttk.Treeview'
2150) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.selection_toggle`> with module 'tkinter' has no attribute 'ttk.Treeview'
2151) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.set`> with module 'tkinter' has no attribute 'ttk.Treeview'
2152) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.set_children`> with module 'tkinter' has no attribute 'ttk.Treeview'
2153) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.tag_bind`> with module 'tkinter' has no attribute 'ttk.Treeview'
2154) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.tag_configure`> with module 'tkinter' has no attribute 'ttk.Treeview'
2155) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.tag_has`> with module 'tkinter' has no attribute 'ttk.Treeview'
2156) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.xview`> with module 'tkinter' has no attribute 'ttk.Treeview'
2157) <DataObjStr:: :py:method:`tkinter.ttk.Treeview.yview`> with module 'tkinter' has no attribute 'ttk.Treeview'
2158) <DataObjStr:: :py:class:`tkinter.ttk.Widget`> with module 'tkinter' has no attribute 'ttk.Widget'
2159) <DataObjStr:: :py:method:`tkinter.ttk.Widget.identify`> with module 'tkinter' has no attribute 'ttk.Widget'
2160) <DataObjStr:: :py:method:`tkinter.ttk.Widget.instate`> with module 'tkinter' has no attribute 'ttk.Widget'
2161) <DataObjStr:: :py:method:`tkinter.ttk.Widget.state`> with module 'tkinter' has no attribute 'ttk.Widget'
2162) <DataObjStr:: :py:attribute:`traceback.TracebackException.__cause__`> with type object 'TracebackException' has no attribute '__cause__'
2163) <DataObjStr:: :py:attribute:`traceback.TracebackException.__context__`> with type object 'TracebackException' has no attribute '__context__'
2164) <DataObjStr:: :py:attribute:`traceback.TracebackException.__suppress_context__`> with type object 'TracebackException' has no attribute '__suppress_context__'
2165) <DataObjStr:: :py:attribute:`traceback.TracebackException.exc_type`> with type object 'TracebackException' has no attribute 'exc_type'
2166) <DataObjStr:: :py:attribute:`traceback.TracebackException.filename`> with type object 'TracebackException' has no attribute 'filename'
2167) <DataObjStr:: :py:attribute:`traceback.TracebackException.lineno`> with type object 'TracebackException' has no attribute 'lineno'
2168) <DataObjStr:: :py:attribute:`traceback.TracebackException.msg`> with type object 'TracebackException' has no attribute 'msg'
2169) <DataObjStr:: :py:attribute:`traceback.TracebackException.offset`> with type object 'TracebackException' has no attribute 'offset'
2170) <DataObjStr:: :py:attribute:`traceback.TracebackException.stack`> with type object 'TracebackException' has no attribute 'stack'
2171) <DataObjStr:: :py:attribute:`traceback.TracebackException.text`> with type object 'TracebackException' has no attribute 'text'
2172) <DataObjStr:: :py:attribute:`tracemalloc.DomainFilter.inclusive`> with type object 'DomainFilter' has no attribute 'inclusive'
2173) <DataObjStr:: :py:attribute:`tracemalloc.Filter.all_frames`> with type object 'Filter' has no attribute 'all_frames'
2174) <DataObjStr:: :py:attribute:`tracemalloc.Filter.domain`> with type object 'Filter' has no attribute 'domain'
2175) <DataObjStr:: :py:attribute:`tracemalloc.Filter.inclusive`> with type object 'Filter' has no attribute 'inclusive'
2176) <DataObjStr:: :py:attribute:`tracemalloc.Filter.lineno`> with type object 'Filter' has no attribute 'lineno'
2177) <DataObjStr:: :py:attribute:`tracemalloc.Snapshot.traceback_limit`> with type object 'Snapshot' has no attribute 'traceback_limit'
2178) <DataObjStr:: :py:attribute:`tracemalloc.Snapshot.traces`> with type object 'Snapshot' has no attribute 'traces'
2179) <DataObjStr:: :py:attribute:`types.ModuleType.__loader__`> with type object 'module' has no attribute '__loader__'
2180) <DataObjStr:: :py:attribute:`types.ModuleType.__package__`> with type object 'module' has no attribute '__package__'
2181) <DataObjStr:: :py:attribute:`types.ModuleType.__spec__`> with type object 'module' has no attribute '__spec__'
2182) <DataObjStr:: :py:function:`typing.type_check_only`> with module 'typing' has no attribute 'type_check_only'
2183) <DataObjStr:: :py:attribute:`unittest.TestCase.output`> with type object 'TestCase' has no attribute 'output'
2184) <DataObjStr:: :py:attribute:`unittest.TestCase.records`> with type object 'TestCase' has no attribute 'records'
2185) <DataObjStr:: :py:attribute:`unittest.TestLoader.errors`> with type object 'TestLoader' has no attribute 'errors'
2186) <DataObjStr:: :py:attribute:`unittest.TestResult.buffer`> with type object 'TestResult' has no attribute 'buffer'
2187) <DataObjStr:: :py:attribute:`unittest.TestResult.errors`> with type object 'TestResult' has no attribute 'errors'
2188) <DataObjStr:: :py:attribute:`unittest.TestResult.expectedFailures`> with type object 'TestResult' has no attribute 'expectedFailures'
2189) <DataObjStr:: :py:attribute:`unittest.TestResult.failfast`> with type object 'TestResult' has no attribute 'failfast'
2190) <DataObjStr:: :py:attribute:`unittest.TestResult.failures`> with type object 'TestResult' has no attribute 'failures'
2191) <DataObjStr:: :py:attribute:`unittest.TestResult.shouldStop`> with type object 'TestResult' has no attribute 'shouldStop'
2192) <DataObjStr:: :py:attribute:`unittest.TestResult.skipped`> with type object 'TestResult' has no attribute 'skipped'
2193) <DataObjStr:: :py:attribute:`unittest.TestResult.tb_locals`> with type object 'TestResult' has no attribute 'tb_locals'
2194) <DataObjStr:: :py:attribute:`unittest.TestResult.testsRun`> with type object 'TestResult' has no attribute 'testsRun'
2195) <DataObjStr:: :py:attribute:`unittest.TestResult.unexpectedSuccesses`> with type object 'TestResult' has no attribute 'unexpectedSuccesses'
2196) <DataObjStr:: :py:function:`unittest.doModuleCleanups`> with module 'unittest' has no attribute 'doModuleCleanups'
2197) <DataObjStr:: :py:data:`unittest.mock.ANY`> with module 'unittest' has no attribute 'mock.ANY'
2198) <DataObjStr:: :py:class:`unittest.mock.AsyncMock`> with module 'unittest' has no attribute 'mock.AsyncMock'
2199) <DataObjStr:: :py:method:`unittest.mock.AsyncMock.assert_any_await`> with module 'unittest' has no attribute 'mock.AsyncMock'
2200) <DataObjStr:: :py:method:`unittest.mock.AsyncMock.assert_awaited`> with module 'unittest' has no attribute 'mock.AsyncMock'
2201) <DataObjStr:: :py:method:`unittest.mock.AsyncMock.assert_awaited_once`> with module 'unittest' has no attribute 'mock.AsyncMock'
2202) <DataObjStr:: :py:method:`unittest.mock.AsyncMock.assert_awaited_once_with`> with module 'unittest' has no attribute 'mock.AsyncMock'
2203) <DataObjStr:: :py:method:`unittest.mock.AsyncMock.assert_awaited_with`> with module 'unittest' has no attribute 'mock.AsyncMock'
2204) <DataObjStr:: :py:method:`unittest.mock.AsyncMock.assert_has_awaits`> with module 'unittest' has no attribute 'mock.AsyncMock'
2205) <DataObjStr:: :py:method:`unittest.mock.AsyncMock.assert_not_awaited`> with module 'unittest' has no attribute 'mock.AsyncMock'
2206) <DataObjStr:: :py:attribute:`unittest.mock.AsyncMock.await_args`> with module 'unittest' has no attribute 'mock.AsyncMock'
2207) <DataObjStr:: :py:attribute:`unittest.mock.AsyncMock.await_args_list`> with module 'unittest' has no attribute 'mock.AsyncMock'
2208) <DataObjStr:: :py:attribute:`unittest.mock.AsyncMock.await_count`> with module 'unittest' has no attribute 'mock.AsyncMock'
2209) <DataObjStr:: :py:method:`unittest.mock.AsyncMock.reset_mock`> with module 'unittest' has no attribute 'mock.AsyncMock'
2210) <DataObjStr:: :py:data:`unittest.mock.DEFAULT`> with module 'unittest' has no attribute 'mock.DEFAULT'
2211) <DataObjStr:: :py:data:`unittest.mock.FILTER_DIR`> with module 'unittest' has no attribute 'mock.FILTER_DIR'
2212) <DataObjStr:: :py:class:`unittest.mock.MagicMock`> with module 'unittest' has no attribute 'mock.MagicMock'
2213) <DataObjStr:: :py:class:`unittest.mock.Mock`> with module 'unittest' has no attribute 'mock.Mock'
2214) <DataObjStr:: :py:attribute:`unittest.mock.Mock.__class__`> with module 'unittest' has no attribute 'mock.Mock'
2215) <DataObjStr:: :py:method:`unittest.mock.Mock.__dir__`> with module 'unittest' has no attribute 'mock.Mock'
2216) <DataObjStr:: :py:method:`unittest.mock.Mock._get_child_mock`> with module 'unittest' has no attribute 'mock.Mock'
2217) <DataObjStr:: :py:method:`unittest.mock.Mock.assert_any_call`> with module 'unittest' has no attribute 'mock.Mock'
2218) <DataObjStr:: :py:method:`unittest.mock.Mock.assert_called`> with module 'unittest' has no attribute 'mock.Mock'
2219) <DataObjStr:: :py:method:`unittest.mock.Mock.assert_called_once`> with module 'unittest' has no attribute 'mock.Mock'
2220) <DataObjStr:: :py:method:`unittest.mock.Mock.assert_called_once_with`> with module 'unittest' has no attribute 'mock.Mock'
2221) <DataObjStr:: :py:method:`unittest.mock.Mock.assert_called_with`> with module 'unittest' has no attribute 'mock.Mock'
2222) <DataObjStr:: :py:method:`unittest.mock.Mock.assert_has_calls`> with module 'unittest' has no attribute 'mock.Mock'
2223) <DataObjStr:: :py:method:`unittest.mock.Mock.assert_not_called`> with module 'unittest' has no attribute 'mock.Mock'
2224) <DataObjStr:: :py:method:`unittest.mock.Mock.attach_mock`> with module 'unittest' has no attribute 'mock.Mock'
2225) <DataObjStr:: :py:attribute:`unittest.mock.Mock.call_args`> with module 'unittest' has no attribute 'mock.Mock'
2226) <DataObjStr:: :py:attribute:`unittest.mock.Mock.call_args_list`> with module 'unittest' has no attribute 'mock.Mock'
2227) <DataObjStr:: :py:attribute:`unittest.mock.Mock.call_count`> with module 'unittest' has no attribute 'mock.Mock'
2228) <DataObjStr:: :py:attribute:`unittest.mock.Mock.called`> with module 'unittest' has no attribute 'mock.Mock'
2229) <DataObjStr:: :py:method:`unittest.mock.Mock.configure_mock`> with module 'unittest' has no attribute 'mock.Mock'
2230) <DataObjStr:: :py:attribute:`unittest.mock.Mock.method_calls`> with module 'unittest' has no attribute 'mock.Mock'
2231) <DataObjStr:: :py:method:`unittest.mock.Mock.mock_add_spec`> with module 'unittest' has no attribute 'mock.Mock'
2232) <DataObjStr:: :py:attribute:`unittest.mock.Mock.mock_calls`> with module 'unittest' has no attribute 'mock.Mock'
2233) <DataObjStr:: :py:method:`unittest.mock.Mock.reset_mock`> with module 'unittest' has no attribute 'mock.Mock'
2234) <DataObjStr:: :py:attribute:`unittest.mock.Mock.return_value`> with module 'unittest' has no attribute 'mock.Mock'
2235) <DataObjStr:: :py:attribute:`unittest.mock.Mock.side_effect`> with module 'unittest' has no attribute 'mock.Mock'
2236) <DataObjStr:: :py:class:`unittest.mock.NonCallableMagicMock`> with module 'unittest' has no attribute 'mock.NonCallableMagicMock'
2237) <DataObjStr:: :py:class:`unittest.mock.NonCallableMock`> with module 'unittest' has no attribute 'mock.NonCallableMock'
2238) <DataObjStr:: :py:class:`unittest.mock.PropertyMock`> with module 'unittest' has no attribute 'mock.PropertyMock'
2239) <DataObjStr:: :py:function:`unittest.mock.call`> with module 'unittest' has no attribute 'mock.call'
2240) <DataObjStr:: :py:method:`unittest.mock.call.call_list`> with module 'unittest' has no attribute 'mock.call'
2241) <DataObjStr:: :py:function:`unittest.mock.create_autospec`> with module 'unittest' has no attribute 'mock.create_autospec'
2242) <DataObjStr:: :py:function:`unittest.mock.mock_open`> with module 'unittest' has no attribute 'mock.mock_open'
2243) <DataObjStr:: :py:function:`unittest.mock.patch`> with module 'unittest' has no attribute 'mock.patch'
2244) <DataObjStr:: :py:function:`unittest.mock.patch.dict`> with module 'unittest' has no attribute 'mock.patch.dict'
2245) <DataObjStr:: :py:function:`unittest.mock.patch.multiple`> with module 'unittest' has no attribute 'mock.patch.multiple'
2246) <DataObjStr:: :py:function:`unittest.mock.patch.object`> with module 'unittest' has no attribute 'mock.patch.object'
2247) <DataObjStr:: :py:function:`unittest.mock.patch.stopall`> with module 'unittest' has no attribute 'mock.patch.stopall'
2248) <DataObjStr:: :py:function:`unittest.mock.seal`> with module 'unittest' has no attribute 'mock.seal'
2249) <DataObjStr:: :py:data:`unittest.mock.sentinel`> with module 'unittest' has no attribute 'mock.sentinel'
2250) <DataObjStr:: :py:exception:`urllib.error.ContentTooShortError`> with module 'urllib' has no attribute 'error.ContentTooShortError'
2251) <DataObjStr:: :py:exception:`urllib.error.HTTPError`> with module 'urllib' has no attribute 'error.HTTPError'
2252) <DataObjStr:: :py:attribute:`urllib.error.HTTPError.code`> with module 'urllib' has no attribute 'error.HTTPError'
2253) <DataObjStr:: :py:attribute:`urllib.error.HTTPError.headers`> with module 'urllib' has no attribute 'error.HTTPError'
2254) <DataObjStr:: :py:attribute:`urllib.error.HTTPError.reason`> with module 'urllib' has no attribute 'error.HTTPError'
2255) <DataObjStr:: :py:exception:`urllib.error.URLError`> with module 'urllib' has no attribute 'error.URLError'
2256) <DataObjStr:: :py:attribute:`urllib.error.URLError.reason`> with module 'urllib' has no attribute 'error.URLError'
2257) <DataObjStr:: :py:class:`urllib.parse.DefragResult`> with module 'urllib' has no attribute 'parse.DefragResult'
2258) <DataObjStr:: :py:class:`urllib.parse.DefragResultBytes`> with module 'urllib' has no attribute 'parse.DefragResultBytes'
2259) <DataObjStr:: :py:class:`urllib.parse.ParseResult`> with module 'urllib' has no attribute 'parse.ParseResult'
2260) <DataObjStr:: :py:class:`urllib.parse.ParseResultBytes`> with module 'urllib' has no attribute 'parse.ParseResultBytes'
2261) <DataObjStr:: :py:class:`urllib.parse.SplitResult`> with module 'urllib' has no attribute 'parse.SplitResult'
2262) <DataObjStr:: :py:class:`urllib.parse.SplitResultBytes`> with module 'urllib' has no attribute 'parse.SplitResultBytes'
2263) <DataObjStr:: :py:function:`urllib.parse.parse_qs`> with module 'urllib' has no attribute 'parse.parse_qs'
2264) <DataObjStr:: :py:function:`urllib.parse.parse_qsl`> with module 'urllib' has no attribute 'parse.parse_qsl'
2265) <DataObjStr:: :py:function:`urllib.parse.quote`> with module 'urllib' has no attribute 'parse.quote'
2266) <DataObjStr:: :py:function:`urllib.parse.quote_from_bytes`> with module 'urllib' has no attribute 'parse.quote_from_bytes'
2267) <DataObjStr:: :py:function:`urllib.parse.quote_plus`> with module 'urllib' has no attribute 'parse.quote_plus'
2268) <DataObjStr:: :py:function:`urllib.parse.unquote`> with module 'urllib' has no attribute 'parse.unquote'
2269) <DataObjStr:: :py:function:`urllib.parse.unquote_plus`> with module 'urllib' has no attribute 'parse.unquote_plus'
2270) <DataObjStr:: :py:function:`urllib.parse.unquote_to_bytes`> with module 'urllib' has no attribute 'parse.unquote_to_bytes'
2271) <DataObjStr:: :py:function:`urllib.parse.unwrap`> with module 'urllib' has no attribute 'parse.unwrap'
2272) <DataObjStr:: :py:function:`urllib.parse.urldefrag`> with module 'urllib' has no attribute 'parse.urldefrag'
2273) <DataObjStr:: :py:function:`urllib.parse.urlencode`> with module 'urllib' has no attribute 'parse.urlencode'
2274) <DataObjStr:: :py:function:`urllib.parse.urljoin`> with module 'urllib' has no attribute 'parse.urljoin'
2275) <DataObjStr:: :py:method:`urllib.parse.urllib.parse.SplitResult.geturl`> with module 'urllib' has no attribute 'parse.urllib.parse.SplitResult'
2276) <DataObjStr:: :py:function:`urllib.parse.urlparse`> with module 'urllib' has no attribute 'parse.urlparse'
2277) <DataObjStr:: :py:function:`urllib.parse.urlsplit`> with module 'urllib' has no attribute 'parse.urlsplit'
2278) <DataObjStr:: :py:function:`urllib.parse.urlunparse`> with module 'urllib' has no attribute 'parse.urlunparse'
2279) <DataObjStr:: :py:function:`urllib.parse.urlunsplit`> with module 'urllib' has no attribute 'parse.urlunsplit'
2280) <DataObjStr:: :py:class:`urllib.request.AbstractBasicAuthHandler`> with module 'urllib' has no attribute 'request.AbstractBasicAuthHandler'
2281) <DataObjStr:: :py:method:`urllib.request.AbstractBasicAuthHandler.http_error_auth_reqed`> with module 'urllib' has no attribute 'request.AbstractBasicAuthHandler'
2282) <DataObjStr:: :py:class:`urllib.request.AbstractDigestAuthHandler`> with module 'urllib' has no attribute 'request.AbstractDigestAuthHandler'
2283) <DataObjStr:: :py:method:`urllib.request.AbstractDigestAuthHandler.http_error_auth_reqed`> with module 'urllib' has no attribute 'request.AbstractDigestAuthHandler'
2284) <DataObjStr:: :py:class:`urllib.request.BaseHandler`> with module 'urllib' has no attribute 'request.BaseHandler'
2285) <DataObjStr:: :py:method:`urllib.request.BaseHandler.add_parent`> with module 'urllib' has no attribute 'request.BaseHandler'
2286) <DataObjStr:: :py:method:`urllib.request.BaseHandler.close`> with module 'urllib' has no attribute 'request.BaseHandler'
2287) <DataObjStr:: :py:method:`urllib.request.BaseHandler.default_open`> with module 'urllib' has no attribute 'request.BaseHandler'
2288) <DataObjStr:: :py:method:`urllib.request.BaseHandler.http_error_default`> with module 'urllib' has no attribute 'request.BaseHandler'
2289) <DataObjStr:: :py:attribute:`urllib.request.BaseHandler.parent`> with module 'urllib' has no attribute 'request.BaseHandler'
2290) <DataObjStr:: :py:method:`urllib.request.BaseHandler.unknown_open`> with module 'urllib' has no attribute 'request.BaseHandler'
2291) <DataObjStr:: :py:class:`urllib.request.CacheFTPHandler`> with module 'urllib' has no attribute 'request.CacheFTPHandler'
2292) <DataObjStr:: :py:method:`urllib.request.CacheFTPHandler.setMaxConns`> with module 'urllib' has no attribute 'request.CacheFTPHandler'
2293) <DataObjStr:: :py:method:`urllib.request.CacheFTPHandler.setTimeout`> with module 'urllib' has no attribute 'request.CacheFTPHandler'
2294) <DataObjStr:: :py:class:`urllib.request.DataHandler`> with module 'urllib' has no attribute 'request.DataHandler'
2295) <DataObjStr:: :py:method:`urllib.request.DataHandler.data_open`> with module 'urllib' has no attribute 'request.DataHandler'
2296) <DataObjStr:: :py:class:`urllib.request.FTPHandler`> with module 'urllib' has no attribute 'request.FTPHandler'
2297) <DataObjStr:: :py:method:`urllib.request.FTPHandler.ftp_open`> with module 'urllib' has no attribute 'request.FTPHandler'
2298) <DataObjStr:: :py:class:`urllib.request.FancyURLopener`> with module 'urllib' has no attribute 'request.FancyURLopener'
2299) <DataObjStr:: :py:method:`urllib.request.FancyURLopener.prompt_user_passwd`> with module 'urllib' has no attribute 'request.FancyURLopener'
2300) <DataObjStr:: :py:class:`urllib.request.FileHandler`> with module 'urllib' has no attribute 'request.FileHandler'
2301) <DataObjStr:: :py:method:`urllib.request.FileHandler.file_open`> with module 'urllib' has no attribute 'request.FileHandler'
2302) <DataObjStr:: :py:class:`urllib.request.HTTPBasicAuthHandler`> with module 'urllib' has no attribute 'request.HTTPBasicAuthHandler'
2303) <DataObjStr:: :py:method:`urllib.request.HTTPBasicAuthHandler.http_error_401`> with module 'urllib' has no attribute 'request.HTTPBasicAuthHandler'
2304) <DataObjStr:: :py:class:`urllib.request.HTTPCookieProcessor`> with module 'urllib' has no attribute 'request.HTTPCookieProcessor'
2305) <DataObjStr:: :py:attribute:`urllib.request.HTTPCookieProcessor.cookiejar`> with module 'urllib' has no attribute 'request.HTTPCookieProcessor'
2306) <DataObjStr:: :py:class:`urllib.request.HTTPDefaultErrorHandler`> with module 'urllib' has no attribute 'request.HTTPDefaultErrorHandler'
2307) <DataObjStr:: :py:class:`urllib.request.HTTPDigestAuthHandler`> with module 'urllib' has no attribute 'request.HTTPDigestAuthHandler'
2308) <DataObjStr:: :py:method:`urllib.request.HTTPDigestAuthHandler.http_error_401`> with module 'urllib' has no attribute 'request.HTTPDigestAuthHandler'
2309) <DataObjStr:: :py:class:`urllib.request.HTTPErrorProcessor`> with module 'urllib' has no attribute 'request.HTTPErrorProcessor'
2310) <DataObjStr:: :py:method:`urllib.request.HTTPErrorProcessor.http_response`> with module 'urllib' has no attribute 'request.HTTPErrorProcessor'
2311) <DataObjStr:: :py:method:`urllib.request.HTTPErrorProcessor.https_response`> with module 'urllib' has no attribute 'request.HTTPErrorProcessor'
2312) <DataObjStr:: :py:class:`urllib.request.HTTPHandler`> with module 'urllib' has no attribute 'request.HTTPHandler'
2313) <DataObjStr:: :py:method:`urllib.request.HTTPHandler.http_open`> with module 'urllib' has no attribute 'request.HTTPHandler'
2314) <DataObjStr:: :py:class:`urllib.request.HTTPPasswordMgr`> with module 'urllib' has no attribute 'request.HTTPPasswordMgr'
2315) <DataObjStr:: :py:method:`urllib.request.HTTPPasswordMgr.add_password`> with module 'urllib' has no attribute 'request.HTTPPasswordMgr'
2316) <DataObjStr:: :py:method:`urllib.request.HTTPPasswordMgr.find_user_password`> with module 'urllib' has no attribute 'request.HTTPPasswordMgr'
2317) <DataObjStr:: :py:class:`urllib.request.HTTPPasswordMgrWithDefaultRealm`> with module 'urllib' has no attribute 'request.HTTPPasswordMgrWithDefaultRealm'
2318) <DataObjStr:: :py:class:`urllib.request.HTTPPasswordMgrWithPriorAuth`> with module 'urllib' has no attribute 'request.HTTPPasswordMgrWithPriorAuth'
2319) <DataObjStr:: :py:method:`urllib.request.HTTPPasswordMgrWithPriorAuth.add_password`> with module 'urllib' has no attribute 'request.HTTPPasswordMgrWithPriorAuth'
2320) <DataObjStr:: :py:method:`urllib.request.HTTPPasswordMgrWithPriorAuth.find_user_password`> with module 'urllib' has no attribute 'request.HTTPPasswordMgrWithPriorAuth'
2321) <DataObjStr:: :py:method:`urllib.request.HTTPPasswordMgrWithPriorAuth.is_authenticated`> with module 'urllib' has no attribute 'request.HTTPPasswordMgrWithPriorAuth'
2322) <DataObjStr:: :py:method:`urllib.request.HTTPPasswordMgrWithPriorAuth.update_authenticated`> with module 'urllib' has no attribute 'request.HTTPPasswordMgrWithPriorAuth'
2323) <DataObjStr:: :py:class:`urllib.request.HTTPRedirectHandler`> with module 'urllib' has no attribute 'request.HTTPRedirectHandler'
2324) <DataObjStr:: :py:method:`urllib.request.HTTPRedirectHandler.http_error_301`> with module 'urllib' has no attribute 'request.HTTPRedirectHandler'
2325) <DataObjStr:: :py:method:`urllib.request.HTTPRedirectHandler.http_error_302`> with module 'urllib' has no attribute 'request.HTTPRedirectHandler'
2326) <DataObjStr:: :py:method:`urllib.request.HTTPRedirectHandler.http_error_303`> with module 'urllib' has no attribute 'request.HTTPRedirectHandler'
2327) <DataObjStr:: :py:method:`urllib.request.HTTPRedirectHandler.http_error_307`> with module 'urllib' has no attribute 'request.HTTPRedirectHandler'
2328) <DataObjStr:: :py:method:`urllib.request.HTTPRedirectHandler.redirect_request`> with module 'urllib' has no attribute 'request.HTTPRedirectHandler'
2329) <DataObjStr:: :py:class:`urllib.request.HTTPSHandler`> with module 'urllib' has no attribute 'request.HTTPSHandler'
2330) <DataObjStr:: :py:method:`urllib.request.HTTPSHandler.https_open`> with module 'urllib' has no attribute 'request.HTTPSHandler'
2331) <DataObjStr:: :py:class:`urllib.request.OpenerDirector`> with module 'urllib' has no attribute 'request.OpenerDirector'
2332) <DataObjStr:: :py:method:`urllib.request.OpenerDirector.add_handler`> with module 'urllib' has no attribute 'request.OpenerDirector'
2333) <DataObjStr:: :py:method:`urllib.request.OpenerDirector.error`> with module 'urllib' has no attribute 'request.OpenerDirector'
2334) <DataObjStr:: :py:method:`urllib.request.OpenerDirector.open`> with module 'urllib' has no attribute 'request.OpenerDirector'
2335) <DataObjStr:: :py:class:`urllib.request.ProxyBasicAuthHandler`> with module 'urllib' has no attribute 'request.ProxyBasicAuthHandler'
2336) <DataObjStr:: :py:method:`urllib.request.ProxyBasicAuthHandler.http_error_407`> with module 'urllib' has no attribute 'request.ProxyBasicAuthHandler'
2337) <DataObjStr:: :py:class:`urllib.request.ProxyDigestAuthHandler`> with module 'urllib' has no attribute 'request.ProxyDigestAuthHandler'
2338) <DataObjStr:: :py:method:`urllib.request.ProxyDigestAuthHandler.http_error_407`> with module 'urllib' has no attribute 'request.ProxyDigestAuthHandler'
2339) <DataObjStr:: :py:class:`urllib.request.ProxyHandler`> with module 'urllib' has no attribute 'request.ProxyHandler'
2340) <DataObjStr:: :py:class:`urllib.request.Request`> with module 'urllib' has no attribute 'request.Request'
2341) <DataObjStr:: :py:method:`urllib.request.Request.add_header`> with module 'urllib' has no attribute 'request.Request'
2342) <DataObjStr:: :py:method:`urllib.request.Request.add_unredirected_header`> with module 'urllib' has no attribute 'request.Request'
2343) <DataObjStr:: :py:attribute:`urllib.request.Request.data`> with module 'urllib' has no attribute 'request.Request'
2344) <DataObjStr:: :py:attribute:`urllib.request.Request.full_url`> with module 'urllib' has no attribute 'request.Request'
2345) <DataObjStr:: :py:method:`urllib.request.Request.get_full_url`> with module 'urllib' has no attribute 'request.Request'
2346) <DataObjStr:: :py:method:`urllib.request.Request.get_header`> with module 'urllib' has no attribute 'request.Request'
2347) <DataObjStr:: :py:method:`urllib.request.Request.get_method`> with module 'urllib' has no attribute 'request.Request'
2348) <DataObjStr:: :py:method:`urllib.request.Request.has_header`> with module 'urllib' has no attribute 'request.Request'
2349) <DataObjStr:: :py:method:`urllib.request.Request.header_items`> with module 'urllib' has no attribute 'request.Request'
2350) <DataObjStr:: :py:attribute:`urllib.request.Request.host`> with module 'urllib' has no attribute 'request.Request'
2351) <DataObjStr:: :py:attribute:`urllib.request.Request.method`> with module 'urllib' has no attribute 'request.Request'
2352) <DataObjStr:: :py:attribute:`urllib.request.Request.origin_req_host`> with module 'urllib' has no attribute 'request.Request'
2353) <DataObjStr:: :py:method:`urllib.request.Request.remove_header`> with module 'urllib' has no attribute 'request.Request'
2354) <DataObjStr:: :py:attribute:`urllib.request.Request.selector`> with module 'urllib' has no attribute 'request.Request'
2355) <DataObjStr:: :py:method:`urllib.request.Request.set_proxy`> with module 'urllib' has no attribute 'request.Request'
2356) <DataObjStr:: :py:attribute:`urllib.request.Request.type`> with module 'urllib' has no attribute 'request.Request'
2357) <DataObjStr:: :py:attribute:`urllib.request.Request.unverifiable`> with module 'urllib' has no attribute 'request.Request'
2358) <DataObjStr:: :py:class:`urllib.request.URLopener`> with module 'urllib' has no attribute 'request.URLopener'
2359) <DataObjStr:: :py:method:`urllib.request.URLopener.open`> with module 'urllib' has no attribute 'request.URLopener'
2360) <DataObjStr:: :py:method:`urllib.request.URLopener.open_unknown`> with module 'urllib' has no attribute 'request.URLopener'
2361) <DataObjStr:: :py:method:`urllib.request.URLopener.retrieve`> with module 'urllib' has no attribute 'request.URLopener'
2362) <DataObjStr:: :py:attribute:`urllib.request.URLopener.version`> with module 'urllib' has no attribute 'request.URLopener'
2363) <DataObjStr:: :py:class:`urllib.request.UnknownHandler`> with module 'urllib' has no attribute 'request.UnknownHandler'
2364) <DataObjStr:: :py:method:`urllib.request.UnknownHandler.unknown_open`> with module 'urllib' has no attribute 'request.UnknownHandler'
2365) <DataObjStr:: :py:function:`urllib.request.build_opener`> with module 'urllib' has no attribute 'request.build_opener'
2366) <DataObjStr:: :py:function:`urllib.request.getproxies`> with module 'urllib' has no attribute 'request.getproxies'
2367) <DataObjStr:: :py:function:`urllib.request.install_opener`> with module 'urllib' has no attribute 'request.install_opener'
2368) <DataObjStr:: :py:function:`urllib.request.pathname2url`> with module 'urllib' has no attribute 'request.pathname2url'
2369) <DataObjStr:: :py:function:`urllib.request.url2pathname`> with module 'urllib' has no attribute 'request.url2pathname'
2370) <DataObjStr:: :py:function:`urllib.request.urlcleanup`> with module 'urllib' has no attribute 'request.urlcleanup'
2371) <DataObjStr:: :py:function:`urllib.request.urlopen`> with module 'urllib' has no attribute 'request.urlopen'
2372) <DataObjStr:: :py:function:`urllib.request.urlretrieve`> with module 'urllib' has no attribute 'request.urlretrieve'
2373) <DataObjStr:: :py:class:`urllib.response.addinfourl`> with module 'urllib' has no attribute 'response.addinfourl'
2374) <DataObjStr:: :py:attribute:`urllib.response.addinfourl.code`> with module 'urllib' has no attribute 'response.addinfourl'
2375) <DataObjStr:: :py:method:`urllib.response.addinfourl.getstatus`> with module 'urllib' has no attribute 'response.addinfourl'
2376) <DataObjStr:: :py:method:`urllib.response.addinfourl.geturl`> with module 'urllib' has no attribute 'response.addinfourl'
2377) <DataObjStr:: :py:attribute:`urllib.response.addinfourl.headers`> with module 'urllib' has no attribute 'response.addinfourl'
2378) <DataObjStr:: :py:method:`urllib.response.addinfourl.info`> with module 'urllib' has no attribute 'response.addinfourl'
2379) <DataObjStr:: :py:attribute:`urllib.response.addinfourl.status`> with module 'urllib' has no attribute 'response.addinfourl'
2380) <DataObjStr:: :py:attribute:`urllib.response.addinfourl.url`> with module 'urllib' has no attribute 'response.addinfourl'
2381) <DataObjStr:: :py:class:`urllib.robotparser.RobotFileParser`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2382) <DataObjStr:: :py:method:`urllib.robotparser.RobotFileParser.can_fetch`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2383) <DataObjStr:: :py:method:`urllib.robotparser.RobotFileParser.crawl_delay`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2384) <DataObjStr:: :py:method:`urllib.robotparser.RobotFileParser.modified`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2385) <DataObjStr:: :py:method:`urllib.robotparser.RobotFileParser.mtime`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2386) <DataObjStr:: :py:method:`urllib.robotparser.RobotFileParser.parse`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2387) <DataObjStr:: :py:method:`urllib.robotparser.RobotFileParser.read`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2388) <DataObjStr:: :py:method:`urllib.robotparser.RobotFileParser.request_rate`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2389) <DataObjStr:: :py:method:`urllib.robotparser.RobotFileParser.set_url`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2390) <DataObjStr:: :py:method:`urllib.robotparser.RobotFileParser.site_maps`> with module 'urllib' has no attribute 'robotparser.RobotFileParser'
2391) <DataObjStr:: :py:method:`webbrowser.controller.open`> with module 'webbrowser' has no attribute 'controller'
2392) <DataObjStr:: :py:method:`webbrowser.controller.open_new`> with module 'webbrowser' has no attribute 'controller'
2393) <DataObjStr:: :py:method:`webbrowser.controller.open_new_tab`> with module 'webbrowser' has no attribute 'controller'
2394) <DataObjStr:: :py:module:`winreg`> with No module named 'winreg'
2395) <DataObjStr:: :py:function:`winreg.CloseKey`> with No module named 'winreg'
2396) <DataObjStr:: :py:function:`winreg.ConnectRegistry`> with No module named 'winreg'
2397) <DataObjStr:: :py:function:`winreg.CreateKey`> with No module named 'winreg'
2398) <DataObjStr:: :py:function:`winreg.CreateKeyEx`> with No module named 'winreg'
2399) <DataObjStr:: :py:function:`winreg.DeleteKey`> with No module named 'winreg'
2400) <DataObjStr:: :py:function:`winreg.DeleteKeyEx`> with No module named 'winreg'
2401) <DataObjStr:: :py:function:`winreg.DeleteValue`> with No module named 'winreg'
2402) <DataObjStr:: :py:function:`winreg.DisableReflectionKey`> with No module named 'winreg'
2403) <DataObjStr:: :py:function:`winreg.EnableReflectionKey`> with No module named 'winreg'
2404) <DataObjStr:: :py:function:`winreg.EnumKey`> with No module named 'winreg'
2405) <DataObjStr:: :py:function:`winreg.EnumValue`> with No module named 'winreg'
2406) <DataObjStr:: :py:function:`winreg.ExpandEnvironmentStrings`> with No module named 'winreg'
2407) <DataObjStr:: :py:function:`winreg.FlushKey`> with No module named 'winreg'
2408) <DataObjStr:: :py:data:`winreg.HKEY_CLASSES_ROOT`> with No module named 'winreg'
2409) <DataObjStr:: :py:data:`winreg.HKEY_CURRENT_CONFIG`> with No module named 'winreg'
2410) <DataObjStr:: :py:data:`winreg.HKEY_CURRENT_USER`> with No module named 'winreg'
2411) <DataObjStr:: :py:data:`winreg.HKEY_DYN_DATA`> with No module named 'winreg'
2412) <DataObjStr:: :py:data:`winreg.HKEY_LOCAL_MACHINE`> with No module named 'winreg'
2413) <DataObjStr:: :py:data:`winreg.HKEY_PERFORMANCE_DATA`> with No module named 'winreg'
2414) <DataObjStr:: :py:data:`winreg.HKEY_USERS`> with No module named 'winreg'
2415) <DataObjStr:: :py:data:`winreg.KEY_ALL_ACCESS`> with No module named 'winreg'
2416) <DataObjStr:: :py:data:`winreg.KEY_CREATE_LINK`> with No module named 'winreg'
2417) <DataObjStr:: :py:data:`winreg.KEY_CREATE_SUB_KEY`> with No module named 'winreg'
2418) <DataObjStr:: :py:data:`winreg.KEY_ENUMERATE_SUB_KEYS`> with No module named 'winreg'
2419) <DataObjStr:: :py:data:`winreg.KEY_EXECUTE`> with No module named 'winreg'
2420) <DataObjStr:: :py:data:`winreg.KEY_NOTIFY`> with No module named 'winreg'
2421) <DataObjStr:: :py:data:`winreg.KEY_QUERY_VALUE`> with No module named 'winreg'
2422) <DataObjStr:: :py:data:`winreg.KEY_READ`> with No module named 'winreg'
2423) <DataObjStr:: :py:data:`winreg.KEY_SET_VALUE`> with No module named 'winreg'
2424) <DataObjStr:: :py:data:`winreg.KEY_WOW64_32KEY`> with No module named 'winreg'
2425) <DataObjStr:: :py:data:`winreg.KEY_WOW64_64KEY`> with No module named 'winreg'
2426) <DataObjStr:: :py:data:`winreg.KEY_WRITE`> with No module named 'winreg'
2427) <DataObjStr:: :py:function:`winreg.LoadKey`> with No module named 'winreg'
2428) <DataObjStr:: :py:function:`winreg.OpenKey`> with No module named 'winreg'
2429) <DataObjStr:: :py:function:`winreg.OpenKeyEx`> with No module named 'winreg'
2430) <DataObjStr:: :py:method:`winreg.PyHKEY.Close`> with No module named 'winreg'
2431) <DataObjStr:: :py:method:`winreg.PyHKEY.Detach`> with No module named 'winreg'
2432) <DataObjStr:: :py:method:`winreg.PyHKEY.__enter__`> with No module named 'winreg'
2433) <DataObjStr:: :py:method:`winreg.PyHKEY.__exit__`> with No module named 'winreg'
2434) <DataObjStr:: :py:function:`winreg.QueryInfoKey`> with No module named 'winreg'
2435) <DataObjStr:: :py:function:`winreg.QueryReflectionKey`> with No module named 'winreg'
2436) <DataObjStr:: :py:function:`winreg.QueryValue`> with No module named 'winreg'
2437) <DataObjStr:: :py:function:`winreg.QueryValueEx`> with No module named 'winreg'
2438) <DataObjStr:: :py:data:`winreg.REG_BINARY`> with No module named 'winreg'
2439) <DataObjStr:: :py:data:`winreg.REG_DWORD`> with No module named 'winreg'
2440) <DataObjStr:: :py:data:`winreg.REG_DWORD_BIG_ENDIAN`> with No module named 'winreg'
2441) <DataObjStr:: :py:data:`winreg.REG_DWORD_LITTLE_ENDIAN`> with No module named 'winreg'
2442) <DataObjStr:: :py:data:`winreg.REG_EXPAND_SZ`> with No module named 'winreg'
2443) <DataObjStr:: :py:data:`winreg.REG_FULL_RESOURCE_DESCRIPTOR`> with No module named 'winreg'
2444) <DataObjStr:: :py:data:`winreg.REG_LINK`> with No module named 'winreg'
2445) <DataObjStr:: :py:data:`winreg.REG_MULTI_SZ`> with No module named 'winreg'
2446) <DataObjStr:: :py:data:`winreg.REG_NONE`> with No module named 'winreg'
2447) <DataObjStr:: :py:data:`winreg.REG_QWORD`> with No module named 'winreg'
2448) <DataObjStr:: :py:data:`winreg.REG_QWORD_LITTLE_ENDIAN`> with No module named 'winreg'
2449) <DataObjStr:: :py:data:`winreg.REG_RESOURCE_LIST`> with No module named 'winreg'
2450) <DataObjStr:: :py:data:`winreg.REG_RESOURCE_REQUIREMENTS_LIST`> with No module named 'winreg'
2451) <DataObjStr:: :py:data:`winreg.REG_SZ`> with No module named 'winreg'
2452) <DataObjStr:: :py:function:`winreg.SaveKey`> with No module named 'winreg'
2453) <DataObjStr:: :py:function:`winreg.SetValue`> with No module named 'winreg'
2454) <DataObjStr:: :py:function:`winreg.SetValueEx`> with No module named 'winreg'
2455) <DataObjStr:: :py:module:`winsound`> with No module named 'winsound'
2456) <DataObjStr:: :py:function:`winsound.Beep`> with No module named 'winsound'
2457) <DataObjStr:: :py:data:`winsound.MB_ICONASTERISK`> with No module named 'winsound'
2458) <DataObjStr:: :py:data:`winsound.MB_ICONEXCLAMATION`> with No module named 'winsound'
2459) <DataObjStr:: :py:data:`winsound.MB_ICONHAND`> with No module named 'winsound'
2460) <DataObjStr:: :py:data:`winsound.MB_ICONQUESTION`> with No module named 'winsound'
2461) <DataObjStr:: :py:data:`winsound.MB_OK`> with No module named 'winsound'
2462) <DataObjStr:: :py:function:`winsound.MessageBeep`> with No module named 'winsound'
2463) <DataObjStr:: :py:function:`winsound.PlaySound`> with No module named 'winsound'
2464) <DataObjStr:: :py:data:`winsound.SND_ALIAS`> with No module named 'winsound'
2465) <DataObjStr:: :py:data:`winsound.SND_ASYNC`> with No module named 'winsound'
2466) <DataObjStr:: :py:data:`winsound.SND_FILENAME`> with No module named 'winsound'
2467) <DataObjStr:: :py:data:`winsound.SND_LOOP`> with No module named 'winsound'
2468) <DataObjStr:: :py:data:`winsound.SND_MEMORY`> with No module named 'winsound'
2469) <DataObjStr:: :py:data:`winsound.SND_NODEFAULT`> with No module named 'winsound'
2470) <DataObjStr:: :py:data:`winsound.SND_NOSTOP`> with No module named 'winsound'
2471) <DataObjStr:: :py:data:`winsound.SND_NOWAIT`> with No module named 'winsound'
2472) <DataObjStr:: :py:data:`winsound.SND_PURGE`> with No module named 'winsound'
2473) <DataObjStr:: :py:class:`wsgiref.handlers.BaseCGIHandler`> with module 'wsgiref' has no attribute 'handlers.BaseCGIHandler'
2474) <DataObjStr:: :py:class:`wsgiref.handlers.BaseHandler`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2475) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler._flush`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2476) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler._write`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2477) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler.add_cgi_vars`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2478) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.error_body`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2479) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.error_headers`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2480) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler.error_output`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2481) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.error_status`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2482) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler.get_scheme`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2483) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler.get_stderr`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2484) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler.get_stdin`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2485) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.http_version`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2486) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler.log_exception`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2487) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.origin_server`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2488) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.os_environ`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2489) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler.run`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2490) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler.sendfile`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2491) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.server_software`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2492) <DataObjStr:: :py:method:`wsgiref.handlers.BaseHandler.setup_environ`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2493) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.traceback_limit`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2494) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.wsgi_file_wrapper`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2495) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.wsgi_multiprocess`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2496) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.wsgi_multithread`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2497) <DataObjStr:: :py:attribute:`wsgiref.handlers.BaseHandler.wsgi_run_once`> with module 'wsgiref' has no attribute 'handlers.BaseHandler'
2498) <DataObjStr:: :py:class:`wsgiref.handlers.CGIHandler`> with module 'wsgiref' has no attribute 'handlers.CGIHandler'
2499) <DataObjStr:: :py:class:`wsgiref.handlers.IISCGIHandler`> with module 'wsgiref' has no attribute 'handlers.IISCGIHandler'
2500) <DataObjStr:: :py:class:`wsgiref.handlers.SimpleHandler`> with module 'wsgiref' has no attribute 'handlers.SimpleHandler'
2501) <DataObjStr:: :py:function:`wsgiref.handlers.read_environ`> with module 'wsgiref' has no attribute 'handlers.read_environ'
2502) <DataObjStr:: :py:class:`wsgiref.headers.Headers`> with module 'wsgiref' has no attribute 'headers.Headers'
2503) <DataObjStr:: :py:method:`wsgiref.headers.Headers.add_header`> with module 'wsgiref' has no attribute 'headers.Headers'
2504) <DataObjStr:: :py:method:`wsgiref.headers.Headers.get_all`> with module 'wsgiref' has no attribute 'headers.Headers'
2505) <DataObjStr:: :py:class:`wsgiref.simple_server.WSGIRequestHandler`> with module 'wsgiref' has no attribute 'simple_server.WSGIRequestHandler'
2506) <DataObjStr:: :py:method:`wsgiref.simple_server.WSGIRequestHandler.get_environ`> with module 'wsgiref' has no attribute 'simple_server.WSGIRequestHandler'
2507) <DataObjStr:: :py:method:`wsgiref.simple_server.WSGIRequestHandler.get_stderr`> with module 'wsgiref' has no attribute 'simple_server.WSGIRequestHandler'
2508) <DataObjStr:: :py:method:`wsgiref.simple_server.WSGIRequestHandler.handle`> with module 'wsgiref' has no attribute 'simple_server.WSGIRequestHandler'
2509) <DataObjStr:: :py:class:`wsgiref.simple_server.WSGIServer`> with module 'wsgiref' has no attribute 'simple_server.WSGIServer'
2510) <DataObjStr:: :py:method:`wsgiref.simple_server.WSGIServer.get_app`> with module 'wsgiref' has no attribute 'simple_server.WSGIServer'
2511) <DataObjStr:: :py:method:`wsgiref.simple_server.WSGIServer.set_app`> with module 'wsgiref' has no attribute 'simple_server.WSGIServer'
2512) <DataObjStr:: :py:function:`wsgiref.simple_server.demo_app`> with module 'wsgiref' has no attribute 'simple_server.demo_app'
2513) <DataObjStr:: :py:function:`wsgiref.simple_server.make_server`> with module 'wsgiref' has no attribute 'simple_server.make_server'
2514) <DataObjStr:: :py:class:`wsgiref.util.FileWrapper`> with module 'wsgiref' has no attribute 'util.FileWrapper'
2515) <DataObjStr:: :py:function:`wsgiref.util.application_uri`> with module 'wsgiref' has no attribute 'util.application_uri'
2516) <DataObjStr:: :py:function:`wsgiref.util.guess_scheme`> with module 'wsgiref' has no attribute 'util.guess_scheme'
2517) <DataObjStr:: :py:function:`wsgiref.util.is_hop_by_hop`> with module 'wsgiref' has no attribute 'util.is_hop_by_hop'
2518) <DataObjStr:: :py:function:`wsgiref.util.request_uri`> with module 'wsgiref' has no attribute 'util.request_uri'
2519) <DataObjStr:: :py:function:`wsgiref.util.setup_testing_defaults`> with module 'wsgiref' has no attribute 'util.setup_testing_defaults'
2520) <DataObjStr:: :py:function:`wsgiref.util.shift_path_info`> with module 'wsgiref' has no attribute 'util.shift_path_info'
2521) <DataObjStr:: :py:function:`wsgiref.validate.validator`> with module 'wsgiref' has no attribute 'validate.validator'
2522) <DataObjStr:: :py:attribute:`xml.dom.Attr.localName`> with module 'xml' has no attribute 'dom.Attr'
2523) <DataObjStr:: :py:attribute:`xml.dom.Attr.name`> with module 'xml' has no attribute 'dom.Attr'
2524) <DataObjStr:: :py:attribute:`xml.dom.Attr.prefix`> with module 'xml' has no attribute 'dom.Attr'
2525) <DataObjStr:: :py:attribute:`xml.dom.Attr.value`> with module 'xml' has no attribute 'dom.Attr'
2526) <DataObjStr:: :py:attribute:`xml.dom.Comment.data`> with module 'xml' has no attribute 'dom.Comment'
2527) <DataObjStr:: :py:exception:`xml.dom.DOMException`> with module 'xml' has no attribute 'dom.DOMException'
2528) <DataObjStr:: :py:method:`xml.dom.DOMImplementation.createDocument`> with module 'xml' has no attribute 'dom.DOMImplementation'
2529) <DataObjStr:: :py:method:`xml.dom.DOMImplementation.createDocumentType`> with module 'xml' has no attribute 'dom.DOMImplementation'
2530) <DataObjStr:: :py:method:`xml.dom.DOMImplementation.hasFeature`> with module 'xml' has no attribute 'dom.DOMImplementation'
2531) <DataObjStr:: :py:method:`xml.dom.Document.createAttribute`> with module 'xml' has no attribute 'dom.Document'
2532) <DataObjStr:: :py:method:`xml.dom.Document.createAttributeNS`> with module 'xml' has no attribute 'dom.Document'
2533) <DataObjStr:: :py:method:`xml.dom.Document.createComment`> with module 'xml' has no attribute 'dom.Document'
2534) <DataObjStr:: :py:method:`xml.dom.Document.createElement`> with module 'xml' has no attribute 'dom.Document'
2535) <DataObjStr:: :py:method:`xml.dom.Document.createElementNS`> with module 'xml' has no attribute 'dom.Document'
2536) <DataObjStr:: :py:method:`xml.dom.Document.createProcessingInstruction`> with module 'xml' has no attribute 'dom.Document'
2537) <DataObjStr:: :py:method:`xml.dom.Document.createTextNode`> with module 'xml' has no attribute 'dom.Document'
2538) <DataObjStr:: :py:attribute:`xml.dom.Document.documentElement`> with module 'xml' has no attribute 'dom.Document'
2539) <DataObjStr:: :py:method:`xml.dom.Document.getElementsByTagName`> with module 'xml' has no attribute 'dom.Document'
2540) <DataObjStr:: :py:method:`xml.dom.Document.getElementsByTagNameNS`> with module 'xml' has no attribute 'dom.Document'
2541) <DataObjStr:: :py:attribute:`xml.dom.DocumentType.entities`> with module 'xml' has no attribute 'dom.DocumentType'
2542) <DataObjStr:: :py:attribute:`xml.dom.DocumentType.internalSubset`> with module 'xml' has no attribute 'dom.DocumentType'
2543) <DataObjStr:: :py:attribute:`xml.dom.DocumentType.name`> with module 'xml' has no attribute 'dom.DocumentType'
2544) <DataObjStr:: :py:attribute:`xml.dom.DocumentType.notations`> with module 'xml' has no attribute 'dom.DocumentType'
2545) <DataObjStr:: :py:attribute:`xml.dom.DocumentType.publicId`> with module 'xml' has no attribute 'dom.DocumentType'
2546) <DataObjStr:: :py:attribute:`xml.dom.DocumentType.systemId`> with module 'xml' has no attribute 'dom.DocumentType'
2547) <DataObjStr:: :py:exception:`xml.dom.DomstringSizeErr`> with module 'xml' has no attribute 'dom.DomstringSizeErr'
2548) <DataObjStr:: :py:data:`xml.dom.EMPTY_NAMESPACE`> with module 'xml' has no attribute 'dom.EMPTY_NAMESPACE'
2549) <DataObjStr:: :py:method:`xml.dom.Element.getAttribute`> with module 'xml' has no attribute 'dom.Element'
2550) <DataObjStr:: :py:method:`xml.dom.Element.getAttributeNS`> with module 'xml' has no attribute 'dom.Element'
2551) <DataObjStr:: :py:method:`xml.dom.Element.getAttributeNode`> with module 'xml' has no attribute 'dom.Element'
2552) <DataObjStr:: :py:method:`xml.dom.Element.getAttributeNodeNS`> with module 'xml' has no attribute 'dom.Element'
2553) <DataObjStr:: :py:method:`xml.dom.Element.getElementsByTagName`> with module 'xml' has no attribute 'dom.Element'
2554) <DataObjStr:: :py:method:`xml.dom.Element.getElementsByTagNameNS`> with module 'xml' has no attribute 'dom.Element'
2555) <DataObjStr:: :py:method:`xml.dom.Element.hasAttribute`> with module 'xml' has no attribute 'dom.Element'
2556) <DataObjStr:: :py:method:`xml.dom.Element.hasAttributeNS`> with module 'xml' has no attribute 'dom.Element'
2557) <DataObjStr:: :py:method:`xml.dom.Element.removeAttribute`> with module 'xml' has no attribute 'dom.Element'
2558) <DataObjStr:: :py:method:`xml.dom.Element.removeAttributeNS`> with module 'xml' has no attribute 'dom.Element'
2559) <DataObjStr:: :py:method:`xml.dom.Element.removeAttributeNode`> with module 'xml' has no attribute 'dom.Element'
2560) <DataObjStr:: :py:method:`xml.dom.Element.setAttribute`> with module 'xml' has no attribute 'dom.Element'
2561) <DataObjStr:: :py:method:`xml.dom.Element.setAttributeNS`> with module 'xml' has no attribute 'dom.Element'
2562) <DataObjStr:: :py:method:`xml.dom.Element.setAttributeNode`> with module 'xml' has no attribute 'dom.Element'
2563) <DataObjStr:: :py:method:`xml.dom.Element.setAttributeNodeNS`> with module 'xml' has no attribute 'dom.Element'
2564) <DataObjStr:: :py:attribute:`xml.dom.Element.tagName`> with module 'xml' has no attribute 'dom.Element'
2565) <DataObjStr:: :py:exception:`xml.dom.HierarchyRequestErr`> with module 'xml' has no attribute 'dom.HierarchyRequestErr'
2566) <DataObjStr:: :py:exception:`xml.dom.IndexSizeErr`> with module 'xml' has no attribute 'dom.IndexSizeErr'
2567) <DataObjStr:: :py:exception:`xml.dom.InuseAttributeErr`> with module 'xml' has no attribute 'dom.InuseAttributeErr'
2568) <DataObjStr:: :py:exception:`xml.dom.InvalidAccessErr`> with module 'xml' has no attribute 'dom.InvalidAccessErr'
2569) <DataObjStr:: :py:exception:`xml.dom.InvalidCharacterErr`> with module 'xml' has no attribute 'dom.InvalidCharacterErr'
2570) <DataObjStr:: :py:exception:`xml.dom.InvalidModificationErr`> with module 'xml' has no attribute 'dom.InvalidModificationErr'
2571) <DataObjStr:: :py:exception:`xml.dom.InvalidStateErr`> with module 'xml' has no attribute 'dom.InvalidStateErr'
2572) <DataObjStr:: :py:method:`xml.dom.NamedNodeMap.item`> with module 'xml' has no attribute 'dom.NamedNodeMap'
2573) <DataObjStr:: :py:attribute:`xml.dom.NamedNodeMap.length`> with module 'xml' has no attribute 'dom.NamedNodeMap'
2574) <DataObjStr:: :py:exception:`xml.dom.NamespaceErr`> with module 'xml' has no attribute 'dom.NamespaceErr'
2575) <DataObjStr:: :py:exception:`xml.dom.NoDataAllowedErr`> with module 'xml' has no attribute 'dom.NoDataAllowedErr'
2576) <DataObjStr:: :py:exception:`xml.dom.NoModificationAllowedErr`> with module 'xml' has no attribute 'dom.NoModificationAllowedErr'
2577) <DataObjStr:: :py:method:`xml.dom.Node.appendChild`> with module 'xml' has no attribute 'dom.Node'
2578) <DataObjStr:: :py:attribute:`xml.dom.Node.attributes`> with module 'xml' has no attribute 'dom.Node'
2579) <DataObjStr:: :py:attribute:`xml.dom.Node.childNodes`> with module 'xml' has no attribute 'dom.Node'
2580) <DataObjStr:: :py:method:`xml.dom.Node.cloneNode`> with module 'xml' has no attribute 'dom.Node'
2581) <DataObjStr:: :py:attribute:`xml.dom.Node.firstChild`> with module 'xml' has no attribute 'dom.Node'
2582) <DataObjStr:: :py:method:`xml.dom.Node.hasAttributes`> with module 'xml' has no attribute 'dom.Node'
2583) <DataObjStr:: :py:method:`xml.dom.Node.hasChildNodes`> with module 'xml' has no attribute 'dom.Node'
2584) <DataObjStr:: :py:method:`xml.dom.Node.insertBefore`> with module 'xml' has no attribute 'dom.Node'
2585) <DataObjStr:: :py:method:`xml.dom.Node.isSameNode`> with module 'xml' has no attribute 'dom.Node'
2586) <DataObjStr:: :py:attribute:`xml.dom.Node.lastChild`> with module 'xml' has no attribute 'dom.Node'
2587) <DataObjStr:: :py:attribute:`xml.dom.Node.localName`> with module 'xml' has no attribute 'dom.Node'
2588) <DataObjStr:: :py:attribute:`xml.dom.Node.namespaceURI`> with module 'xml' has no attribute 'dom.Node'
2589) <DataObjStr:: :py:attribute:`xml.dom.Node.nextSibling`> with module 'xml' has no attribute 'dom.Node'
2590) <DataObjStr:: :py:attribute:`xml.dom.Node.nodeName`> with module 'xml' has no attribute 'dom.Node'
2591) <DataObjStr:: :py:attribute:`xml.dom.Node.nodeType`> with module 'xml' has no attribute 'dom.Node'
2592) <DataObjStr:: :py:attribute:`xml.dom.Node.nodeValue`> with module 'xml' has no attribute 'dom.Node'
2593) <DataObjStr:: :py:method:`xml.dom.Node.normalize`> with module 'xml' has no attribute 'dom.Node'
2594) <DataObjStr:: :py:attribute:`xml.dom.Node.parentNode`> with module 'xml' has no attribute 'dom.Node'
2595) <DataObjStr:: :py:attribute:`xml.dom.Node.prefix`> with module 'xml' has no attribute 'dom.Node'
2596) <DataObjStr:: :py:attribute:`xml.dom.Node.previousSibling`> with module 'xml' has no attribute 'dom.Node'
2597) <DataObjStr:: :py:method:`xml.dom.Node.removeChild`> with module 'xml' has no attribute 'dom.Node'
2598) <DataObjStr:: :py:method:`xml.dom.Node.replaceChild`> with module 'xml' has no attribute 'dom.Node'
2599) <DataObjStr:: :py:method:`xml.dom.NodeList.item`> with module 'xml' has no attribute 'dom.NodeList'
2600) <DataObjStr:: :py:attribute:`xml.dom.NodeList.length`> with module 'xml' has no attribute 'dom.NodeList'
2601) <DataObjStr:: :py:exception:`xml.dom.NotFoundErr`> with module 'xml' has no attribute 'dom.NotFoundErr'
2602) <DataObjStr:: :py:exception:`xml.dom.NotSupportedErr`> with module 'xml' has no attribute 'dom.NotSupportedErr'
2603) <DataObjStr:: :py:attribute:`xml.dom.ProcessingInstruction.data`> with module 'xml' has no attribute 'dom.ProcessingInstruction'
2604) <DataObjStr:: :py:attribute:`xml.dom.ProcessingInstruction.target`> with module 'xml' has no attribute 'dom.ProcessingInstruction'
2605) <DataObjStr:: :py:exception:`xml.dom.SyntaxErr`> with module 'xml' has no attribute 'dom.SyntaxErr'
2606) <DataObjStr:: :py:attribute:`xml.dom.Text.data`> with module 'xml' has no attribute 'dom.Text'
2607) <DataObjStr:: :py:exception:`xml.dom.WrongDocumentErr`> with module 'xml' has no attribute 'dom.WrongDocumentErr'
2608) <DataObjStr:: :py:data:`xml.dom.XHTML_NAMESPACE`> with module 'xml' has no attribute 'dom.XHTML_NAMESPACE'
2609) <DataObjStr:: :py:data:`xml.dom.XMLNS_NAMESPACE`> with module 'xml' has no attribute 'dom.XMLNS_NAMESPACE'
2610) <DataObjStr:: :py:data:`xml.dom.XML_NAMESPACE`> with module 'xml' has no attribute 'dom.XML_NAMESPACE'
2611) <DataObjStr:: :py:function:`xml.dom.getDOMImplementation`> with module 'xml' has no attribute 'dom.getDOMImplementation'
2612) <DataObjStr:: :py:method:`xml.dom.minidom.Node.toprettyxml`> with module 'xml' has no attribute 'dom.minidom.Node'
2613) <DataObjStr:: :py:method:`xml.dom.minidom.Node.toxml`> with module 'xml' has no attribute 'dom.minidom.Node'
2614) <DataObjStr:: :py:method:`xml.dom.minidom.Node.unlink`> with module 'xml' has no attribute 'dom.minidom.Node'
2615) <DataObjStr:: :py:method:`xml.dom.minidom.Node.writexml`> with module 'xml' has no attribute 'dom.minidom.Node'
2616) <DataObjStr:: :py:function:`xml.dom.minidom.parse`> with module 'xml' has no attribute 'dom.minidom.parse'
2617) <DataObjStr:: :py:function:`xml.dom.minidom.parseString`> with module 'xml' has no attribute 'dom.minidom.parseString'
2618) <DataObjStr:: :py:class:`xml.dom.pulldom.DOMEventStream`> with module 'xml' has no attribute 'dom.pulldom.DOMEventStream'
2619) <DataObjStr:: :py:method:`xml.dom.pulldom.DOMEventStream.expandNode`> with module 'xml' has no attribute 'dom.pulldom.DOMEventStream'
2620) <DataObjStr:: :py:method:`xml.dom.pulldom.DOMEventStream.getEvent`> with module 'xml' has no attribute 'dom.pulldom.DOMEventStream'
2621) <DataObjStr:: :py:method:`xml.dom.pulldom.DOMEventStream.reset`> with module 'xml' has no attribute 'dom.pulldom.DOMEventStream'
2622) <DataObjStr:: :py:class:`xml.dom.pulldom.PullDom`> with module 'xml' has no attribute 'dom.pulldom.PullDom'
2623) <DataObjStr:: :py:class:`xml.dom.pulldom.SAX2DOM`> with module 'xml' has no attribute 'dom.pulldom.SAX2DOM'
2624) <DataObjStr:: :py:data:`xml.dom.pulldom.default_bufsize`> with module 'xml' has no attribute 'dom.pulldom.default_bufsize'
2625) <DataObjStr:: :py:function:`xml.dom.pulldom.parse`> with module 'xml' has no attribute 'dom.pulldom.parse'
2626) <DataObjStr:: :py:function:`xml.dom.pulldom.parseString`> with module 'xml' has no attribute 'dom.pulldom.parseString'
2627) <DataObjStr:: :py:function:`xml.dom.registerDOMImplementation`> with module 'xml' has no attribute 'dom.registerDOMImplementation'
2628) <DataObjStr:: :py:class:`xml.etree.ElementTree.C14NWriterTarget`> with module 'xml' has no attribute 'etree.ElementTree.C14NWriterTarget'
2629) <DataObjStr:: :py:function:`xml.etree.ElementTree.Comment`> with module 'xml' has no attribute 'etree.ElementTree.Comment'
2630) <DataObjStr:: :py:class:`xml.etree.ElementTree.Element`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2631) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.append`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2632) <DataObjStr:: :py:attribute:`xml.etree.ElementTree.Element.attrib`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2633) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.clear`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2634) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.extend`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2635) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.find`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2636) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.findall`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2637) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.findtext`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2638) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.get`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2639) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.insert`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2640) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.items`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2641) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.iter`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2642) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.iterfind`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2643) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.itertext`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2644) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.keys`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2645) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.makeelement`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2646) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.remove`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2647) <DataObjStr:: :py:method:`xml.etree.ElementTree.Element.set`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2648) <DataObjStr:: :py:attribute:`xml.etree.ElementTree.Element.tag`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2649) <DataObjStr:: :py:attribute:`xml.etree.ElementTree.Element.tail`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2650) <DataObjStr:: :py:attribute:`xml.etree.ElementTree.Element.text`> with module 'xml' has no attribute 'etree.ElementTree.Element'
2651) <DataObjStr:: :py:class:`xml.etree.ElementTree.ElementTree`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2652) <DataObjStr:: :py:method:`xml.etree.ElementTree.ElementTree._setroot`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2653) <DataObjStr:: :py:method:`xml.etree.ElementTree.ElementTree.find`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2654) <DataObjStr:: :py:method:`xml.etree.ElementTree.ElementTree.findall`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2655) <DataObjStr:: :py:method:`xml.etree.ElementTree.ElementTree.findtext`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2656) <DataObjStr:: :py:method:`xml.etree.ElementTree.ElementTree.getroot`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2657) <DataObjStr:: :py:method:`xml.etree.ElementTree.ElementTree.iter`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2658) <DataObjStr:: :py:method:`xml.etree.ElementTree.ElementTree.iterfind`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2659) <DataObjStr:: :py:method:`xml.etree.ElementTree.ElementTree.parse`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2660) <DataObjStr:: :py:method:`xml.etree.ElementTree.ElementTree.write`> with module 'xml' has no attribute 'etree.ElementTree.ElementTree'
2661) <DataObjStr:: :py:class:`xml.etree.ElementTree.ParseError`> with module 'xml' has no attribute 'etree.ElementTree.ParseError'
2662) <DataObjStr:: :py:attribute:`xml.etree.ElementTree.ParseError.code`> with module 'xml' has no attribute 'etree.ElementTree.ParseError'
2663) <DataObjStr:: :py:attribute:`xml.etree.ElementTree.ParseError.position`> with module 'xml' has no attribute 'etree.ElementTree.ParseError'
2664) <DataObjStr:: :py:function:`xml.etree.ElementTree.ProcessingInstruction`> with module 'xml' has no attribute 'etree.ElementTree.ProcessingInstruction'
2665) <DataObjStr:: :py:class:`xml.etree.ElementTree.QName`> with module 'xml' has no attribute 'etree.ElementTree.QName'
2666) <DataObjStr:: :py:function:`xml.etree.ElementTree.SubElement`> with module 'xml' has no attribute 'etree.ElementTree.SubElement'
2667) <DataObjStr:: :py:class:`xml.etree.ElementTree.TreeBuilder`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2668) <DataObjStr:: :py:method:`xml.etree.ElementTree.TreeBuilder.close`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2669) <DataObjStr:: :py:method:`xml.etree.ElementTree.TreeBuilder.comment`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2670) <DataObjStr:: :py:method:`xml.etree.ElementTree.TreeBuilder.data`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2671) <DataObjStr:: :py:method:`xml.etree.ElementTree.TreeBuilder.doctype`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2672) <DataObjStr:: :py:method:`xml.etree.ElementTree.TreeBuilder.end`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2673) <DataObjStr:: :py:method:`xml.etree.ElementTree.TreeBuilder.end_ns`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2674) <DataObjStr:: :py:method:`xml.etree.ElementTree.TreeBuilder.pi`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2675) <DataObjStr:: :py:method:`xml.etree.ElementTree.TreeBuilder.start`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2676) <DataObjStr:: :py:method:`xml.etree.ElementTree.TreeBuilder.start_ns`> with module 'xml' has no attribute 'etree.ElementTree.TreeBuilder'
2677) <DataObjStr:: :py:function:`xml.etree.ElementTree.XML`> with module 'xml' has no attribute 'etree.ElementTree.XML'
2678) <DataObjStr:: :py:function:`xml.etree.ElementTree.XMLID`> with module 'xml' has no attribute 'etree.ElementTree.XMLID'
2679) <DataObjStr:: :py:class:`xml.etree.ElementTree.XMLParser`> with module 'xml' has no attribute 'etree.ElementTree.XMLParser'
2680) <DataObjStr:: :py:method:`xml.etree.ElementTree.XMLParser.close`> with module 'xml' has no attribute 'etree.ElementTree.XMLParser'
2681) <DataObjStr:: :py:method:`xml.etree.ElementTree.XMLParser.feed`> with module 'xml' has no attribute 'etree.ElementTree.XMLParser'
2682) <DataObjStr:: :py:class:`xml.etree.ElementTree.XMLPullParser`> with module 'xml' has no attribute 'etree.ElementTree.XMLPullParser'
2683) <DataObjStr:: :py:method:`xml.etree.ElementTree.XMLPullParser.close`> with module 'xml' has no attribute 'etree.ElementTree.XMLPullParser'
2684) <DataObjStr:: :py:method:`xml.etree.ElementTree.XMLPullParser.feed`> with module 'xml' has no attribute 'etree.ElementTree.XMLPullParser'
2685) <DataObjStr:: :py:method:`xml.etree.ElementTree.XMLPullParser.read_events`> with module 'xml' has no attribute 'etree.ElementTree.XMLPullParser'
2686) <DataObjStr:: :py:function:`xml.etree.ElementTree.canonicalize`> with module 'xml' has no attribute 'etree.ElementTree.canonicalize'
2687) <DataObjStr:: :py:function:`xml.etree.ElementTree.dump`> with module 'xml' has no attribute 'etree.ElementTree.dump'
2688) <DataObjStr:: :py:function:`xml.etree.ElementTree.fromstring`> with module 'xml' has no attribute 'etree.ElementTree.fromstring'
2689) <DataObjStr:: :py:function:`xml.etree.ElementTree.fromstringlist`> with module 'xml' has no attribute 'etree.ElementTree.fromstringlist'
2690) <DataObjStr:: :py:function:`xml.etree.ElementTree.indent`> with module 'xml' has no attribute 'etree.ElementTree.indent'
2691) <DataObjStr:: :py:function:`xml.etree.ElementTree.iselement`> with module 'xml' has no attribute 'etree.ElementTree.iselement'
2692) <DataObjStr:: :py:function:`xml.etree.ElementTree.iterparse`> with module 'xml' has no attribute 'etree.ElementTree.iterparse'
2693) <DataObjStr:: :py:function:`xml.etree.ElementTree.parse`> with module 'xml' has no attribute 'etree.ElementTree.parse'
2694) <DataObjStr:: :py:function:`xml.etree.ElementTree.register_namespace`> with module 'xml' has no attribute 'etree.ElementTree.register_namespace'
2695) <DataObjStr:: :py:function:`xml.etree.ElementTree.tostring`> with module 'xml' has no attribute 'etree.ElementTree.tostring'
2696) <DataObjStr:: :py:function:`xml.etree.ElementTree.tostringlist`> with module 'xml' has no attribute 'etree.ElementTree.tostringlist'
2697) <DataObjStr:: :py:function:`xml.etree.ElementTree.xml.etree.ElementInclude.default_loader`> with module 'xml' has no attribute 'etree.ElementTree.xml.etree.ElementInclude.default_loader'
2698) <DataObjStr:: :py:function:`xml.etree.ElementTree.xml.etree.ElementInclude.include`> with module 'xml' has no attribute 'etree.ElementTree.xml.etree.ElementInclude.include'
2699) <DataObjStr:: :py:function:`xml.parsers.expat.ErrorString`> with module 'xml' has no attribute 'parsers.expat.ErrorString'
2700) <DataObjStr:: :py:exception:`xml.parsers.expat.ExpatError`> with module 'xml' has no attribute 'parsers.expat.ExpatError'
2701) <DataObjStr:: :py:attribute:`xml.parsers.expat.ExpatError.code`> with module 'xml' has no attribute 'parsers.expat.ExpatError'
2702) <DataObjStr:: :py:attribute:`xml.parsers.expat.ExpatError.lineno`> with module 'xml' has no attribute 'parsers.expat.ExpatError'
2703) <DataObjStr:: :py:attribute:`xml.parsers.expat.ExpatError.offset`> with module 'xml' has no attribute 'parsers.expat.ExpatError'
2704) <DataObjStr:: :py:function:`xml.parsers.expat.ParserCreate`> with module 'xml' has no attribute 'parsers.expat.ParserCreate'
2705) <DataObjStr:: :py:data:`xml.parsers.expat.XMLParserType`> with module 'xml' has no attribute 'parsers.expat.XMLParserType'
2706) <DataObjStr:: :py:exception:`xml.parsers.expat.error`> with module 'xml' has no attribute 'parsers.expat.error'
2707) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_ABORTED`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_ABORTED'
2708) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_ASYNC_ENTITY`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_ASYNC_ENTITY'
2709) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF'
2710) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_BAD_CHAR_REF`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_BAD_CHAR_REF'
2711) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_BINARY_ENTITY_REF`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_BINARY_ENTITY_REF'
2712) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING'
2713) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_DUPLICATE_ATTRIBUTE`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_DUPLICATE_ATTRIBUTE'
2714) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_ENTITY_DECLARED_IN_PE`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_ENTITY_DECLARED_IN_PE'
2715) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_EXTERNAL_ENTITY_HANDLING`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_EXTERNAL_ENTITY_HANDLING'
2716) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_FEATURE_REQUIRES_XML_DTD`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_FEATURE_REQUIRES_XML_DTD'
2717) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_FINISHED`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_FINISHED'
2718) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_INCOMPLETE_PE`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_INCOMPLETE_PE'
2719) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_INCORRECT_ENCODING`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_INCORRECT_ENCODING'
2720) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_INVALID_TOKEN`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_INVALID_TOKEN'
2721) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_JUNK_AFTER_DOC_ELEMENT`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_JUNK_AFTER_DOC_ELEMENT'
2722) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_MISPLACED_XML_PI`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_MISPLACED_XML_PI'
2723) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_NOT_STANDALONE`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_NOT_STANDALONE'
2724) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_NOT_SUSPENDED`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_NOT_SUSPENDED'
2725) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_NO_ELEMENTS'
2726) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_NO_MEMORY`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_NO_MEMORY'
2727) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_PARAM_ENTITY_REF`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_PARAM_ENTITY_REF'
2728) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_PARTIAL_CHAR`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_PARTIAL_CHAR'
2729) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_PUBLICID`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_PUBLICID'
2730) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_RECURSIVE_ENTITY_REF`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_RECURSIVE_ENTITY_REF'
2731) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_SUSPENDED`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_SUSPENDED'
2732) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_SUSPEND_PE`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_SUSPEND_PE'
2733) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_SYNTAX`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_SYNTAX'
2734) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_TAG_MISMATCH`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_TAG_MISMATCH'
2735) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_TEXT_DECL`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_TEXT_DECL'
2736) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_UNBOUND_PREFIX`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_UNBOUND_PREFIX'
2737) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_UNCLOSED_CDATA_SECTION`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_UNCLOSED_CDATA_SECTION'
2738) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_UNCLOSED_TOKEN`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_UNCLOSED_TOKEN'
2739) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_UNDECLARING_PREFIX`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_UNDECLARING_PREFIX'
2740) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_UNDEFINED_ENTITY`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_UNDEFINED_ENTITY'
2741) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_UNEXPECTED_STATE`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_UNEXPECTED_STATE'
2742) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_UNKNOWN_ENCODING`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_UNKNOWN_ENCODING'
2743) <DataObjStr:: :py:data:`xml.parsers.expat.errors.XML_ERROR_XML_DECL`> with module 'xml' has no attribute 'parsers.expat.errors.XML_ERROR_XML_DECL'
2744) <DataObjStr:: :py:data:`xml.parsers.expat.errors.codes`> with module 'xml' has no attribute 'parsers.expat.errors.codes'
2745) <DataObjStr:: :py:data:`xml.parsers.expat.errors.messages`> with module 'xml' has no attribute 'parsers.expat.errors.messages'
2746) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.AttlistDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2747) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.CharacterDataHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2748) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.CommentHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2749) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.CurrentByteIndex`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2750) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.CurrentColumnNumber`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2751) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.CurrentLineNumber`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2752) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.DefaultHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2753) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.DefaultHandlerExpand`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2754) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.ElementDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2755) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.EndCdataSectionHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2756) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.EndDoctypeDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2757) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.EndElementHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2758) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.EndNamespaceDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2759) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.EntityDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2760) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.ErrorByteIndex`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2761) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.ErrorCode`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2762) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.ErrorColumnNumber`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2763) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.ErrorLineNumber`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2764) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.ExternalEntityParserCreate`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2765) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.ExternalEntityRefHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2766) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.GetBase`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2767) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.GetInputContext`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2768) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.NotStandaloneHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2769) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.NotationDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2770) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.Parse`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2771) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.ParseFile`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2772) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.ProcessingInstructionHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2773) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.SetBase`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2774) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.SetParamEntityParsing`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2775) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.StartCdataSectionHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2776) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.StartDoctypeDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2777) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.StartElementHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2778) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.StartNamespaceDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2779) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.UnparsedEntityDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2780) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.UseForeignDTD`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2781) <DataObjStr:: :py:method:`xml.parsers.expat.xmlparser.XmlDeclHandler`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2782) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.buffer_size`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2783) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.buffer_text`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2784) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.buffer_used`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2785) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.ordered_attributes`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2786) <DataObjStr:: :py:attribute:`xml.parsers.expat.xmlparser.specified_attributes`> with module 'xml' has no attribute 'parsers.expat.xmlparser'
2787) <DataObjStr:: :py:exception:`xml.sax.SAXException`> with module 'xml' has no attribute 'sax.SAXException'
2788) <DataObjStr:: :py:method:`xml.sax.SAXException.getException`> with module 'xml' has no attribute 'sax.SAXException'
2789) <DataObjStr:: :py:method:`xml.sax.SAXException.getMessage`> with module 'xml' has no attribute 'sax.SAXException'
2790) <DataObjStr:: :py:exception:`xml.sax.SAXNotRecognizedException`> with module 'xml' has no attribute 'sax.SAXNotRecognizedException'
2791) <DataObjStr:: :py:exception:`xml.sax.SAXNotSupportedException`> with module 'xml' has no attribute 'sax.SAXNotSupportedException'
2792) <DataObjStr:: :py:exception:`xml.sax.SAXParseException`> with module 'xml' has no attribute 'sax.SAXParseException'
2793) <DataObjStr:: :py:class:`xml.sax.handler.ContentHandler`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2794) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.characters`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2795) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.endDocument`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2796) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.endElement`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2797) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.endElementNS`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2798) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.endPrefixMapping`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2799) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.ignorableWhitespace`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2800) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.processingInstruction`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2801) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.setDocumentLocator`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2802) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.skippedEntity`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2803) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.startDocument`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2804) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.startElement`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2805) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.startElementNS`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2806) <DataObjStr:: :py:method:`xml.sax.handler.ContentHandler.startPrefixMapping`> with module 'xml' has no attribute 'sax.handler.ContentHandler'
2807) <DataObjStr:: :py:class:`xml.sax.handler.DTDHandler`> with module 'xml' has no attribute 'sax.handler.DTDHandler'
2808) <DataObjStr:: :py:method:`xml.sax.handler.DTDHandler.notationDecl`> with module 'xml' has no attribute 'sax.handler.DTDHandler'
2809) <DataObjStr:: :py:method:`xml.sax.handler.DTDHandler.unparsedEntityDecl`> with module 'xml' has no attribute 'sax.handler.DTDHandler'
2810) <DataObjStr:: :py:class:`xml.sax.handler.EntityResolver`> with module 'xml' has no attribute 'sax.handler.EntityResolver'
2811) <DataObjStr:: :py:method:`xml.sax.handler.EntityResolver.resolveEntity`> with module 'xml' has no attribute 'sax.handler.EntityResolver'
2812) <DataObjStr:: :py:class:`xml.sax.handler.ErrorHandler`> with module 'xml' has no attribute 'sax.handler.ErrorHandler'
2813) <DataObjStr:: :py:method:`xml.sax.handler.ErrorHandler.error`> with module 'xml' has no attribute 'sax.handler.ErrorHandler'
2814) <DataObjStr:: :py:method:`xml.sax.handler.ErrorHandler.fatalError`> with module 'xml' has no attribute 'sax.handler.ErrorHandler'
2815) <DataObjStr:: :py:method:`xml.sax.handler.ErrorHandler.warning`> with module 'xml' has no attribute 'sax.handler.ErrorHandler'
2816) <DataObjStr:: :py:class:`xml.sax.handler.LexicalHandler`> with module 'xml' has no attribute 'sax.handler.LexicalHandler'
2817) <DataObjStr:: :py:method:`xml.sax.handler.LexicalHandler.comment`> with module 'xml' has no attribute 'sax.handler.LexicalHandler'
2818) <DataObjStr:: :py:method:`xml.sax.handler.LexicalHandler.endCDATA`> with module 'xml' has no attribute 'sax.handler.LexicalHandler'
2819) <DataObjStr:: :py:method:`xml.sax.handler.LexicalHandler.endDTD`> with module 'xml' has no attribute 'sax.handler.LexicalHandler'
2820) <DataObjStr:: :py:method:`xml.sax.handler.LexicalHandler.startCDATA`> with module 'xml' has no attribute 'sax.handler.LexicalHandler'
2821) <DataObjStr:: :py:method:`xml.sax.handler.LexicalHandler.startDTD`> with module 'xml' has no attribute 'sax.handler.LexicalHandler'
2822) <DataObjStr:: :py:data:`xml.sax.handler.all_features`> with module 'xml' has no attribute 'sax.handler.all_features'
2823) <DataObjStr:: :py:data:`xml.sax.handler.all_properties`> with module 'xml' has no attribute 'sax.handler.all_properties'
2824) <DataObjStr:: :py:data:`xml.sax.handler.feature_external_ges`> with module 'xml' has no attribute 'sax.handler.feature_external_ges'
2825) <DataObjStr:: :py:data:`xml.sax.handler.feature_external_pes`> with module 'xml' has no attribute 'sax.handler.feature_external_pes'
2826) <DataObjStr:: :py:data:`xml.sax.handler.feature_namespace_prefixes`> with module 'xml' has no attribute 'sax.handler.feature_namespace_prefixes'
2827) <DataObjStr:: :py:data:`xml.sax.handler.feature_namespaces`> with module 'xml' has no attribute 'sax.handler.feature_namespaces'
2828) <DataObjStr:: :py:data:`xml.sax.handler.feature_string_interning`> with module 'xml' has no attribute 'sax.handler.feature_string_interning'
2829) <DataObjStr:: :py:data:`xml.sax.handler.feature_validation`> with module 'xml' has no attribute 'sax.handler.feature_validation'
2830) <DataObjStr:: :py:data:`xml.sax.handler.property_declaration_handler`> with module 'xml' has no attribute 'sax.handler.property_declaration_handler'
2831) <DataObjStr:: :py:data:`xml.sax.handler.property_dom_node`> with module 'xml' has no attribute 'sax.handler.property_dom_node'
2832) <DataObjStr:: :py:data:`xml.sax.handler.property_lexical_handler`> with module 'xml' has no attribute 'sax.handler.property_lexical_handler'
2833) <DataObjStr:: :py:data:`xml.sax.handler.property_xml_string`> with module 'xml' has no attribute 'sax.handler.property_xml_string'
2834) <DataObjStr:: :py:function:`xml.sax.make_parser`> with module 'xml' has no attribute 'sax.make_parser'
2835) <DataObjStr:: :py:function:`xml.sax.parse`> with module 'xml' has no attribute 'sax.parse'
2836) <DataObjStr:: :py:function:`xml.sax.parseString`> with module 'xml' has no attribute 'sax.parseString'
2837) <DataObjStr:: :py:class:`xml.sax.saxutils.XMLFilterBase`> with module 'xml' has no attribute 'sax.saxutils.XMLFilterBase'
2838) <DataObjStr:: :py:class:`xml.sax.saxutils.XMLGenerator`> with module 'xml' has no attribute 'sax.saxutils.XMLGenerator'
2839) <DataObjStr:: :py:function:`xml.sax.saxutils.escape`> with module 'xml' has no attribute 'sax.saxutils.escape'
2840) <DataObjStr:: :py:function:`xml.sax.saxutils.prepare_input_source`> with module 'xml' has no attribute 'sax.saxutils.prepare_input_source'
2841) <DataObjStr:: :py:function:`xml.sax.saxutils.quoteattr`> with module 'xml' has no attribute 'sax.saxutils.quoteattr'
2842) <DataObjStr:: :py:function:`xml.sax.saxutils.unescape`> with module 'xml' has no attribute 'sax.saxutils.unescape'
2843) <DataObjStr:: :py:method:`xml.sax.xmlreader.Attributes.getLength`> with module 'xml' has no attribute 'sax.xmlreader.Attributes'
2844) <DataObjStr:: :py:method:`xml.sax.xmlreader.Attributes.getNames`> with module 'xml' has no attribute 'sax.xmlreader.Attributes'
2845) <DataObjStr:: :py:method:`xml.sax.xmlreader.Attributes.getType`> with module 'xml' has no attribute 'sax.xmlreader.Attributes'
2846) <DataObjStr:: :py:method:`xml.sax.xmlreader.Attributes.getValue`> with module 'xml' has no attribute 'sax.xmlreader.Attributes'
2847) <DataObjStr:: :py:class:`xml.sax.xmlreader.AttributesImpl`> with module 'xml' has no attribute 'sax.xmlreader.AttributesImpl'
2848) <DataObjStr:: :py:method:`xml.sax.xmlreader.AttributesNS.getNameByQName`> with module 'xml' has no attribute 'sax.xmlreader.AttributesNS'
2849) <DataObjStr:: :py:method:`xml.sax.xmlreader.AttributesNS.getQNameByName`> with module 'xml' has no attribute 'sax.xmlreader.AttributesNS'
2850) <DataObjStr:: :py:method:`xml.sax.xmlreader.AttributesNS.getQNames`> with module 'xml' has no attribute 'sax.xmlreader.AttributesNS'
2851) <DataObjStr:: :py:method:`xml.sax.xmlreader.AttributesNS.getValueByQName`> with module 'xml' has no attribute 'sax.xmlreader.AttributesNS'
2852) <DataObjStr:: :py:class:`xml.sax.xmlreader.AttributesNSImpl`> with module 'xml' has no attribute 'sax.xmlreader.AttributesNSImpl'
2853) <DataObjStr:: :py:class:`xml.sax.xmlreader.IncrementalParser`> with module 'xml' has no attribute 'sax.xmlreader.IncrementalParser'
2854) <DataObjStr:: :py:method:`xml.sax.xmlreader.IncrementalParser.close`> with module 'xml' has no attribute 'sax.xmlreader.IncrementalParser'
2855) <DataObjStr:: :py:method:`xml.sax.xmlreader.IncrementalParser.feed`> with module 'xml' has no attribute 'sax.xmlreader.IncrementalParser'
2856) <DataObjStr:: :py:method:`xml.sax.xmlreader.IncrementalParser.reset`> with module 'xml' has no attribute 'sax.xmlreader.IncrementalParser'
2857) <DataObjStr:: :py:class:`xml.sax.xmlreader.InputSource`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2858) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.getByteStream`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2859) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.getCharacterStream`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2860) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.getEncoding`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2861) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.getPublicId`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2862) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.getSystemId`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2863) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.setByteStream`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2864) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.setCharacterStream`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2865) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.setEncoding`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2866) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.setPublicId`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2867) <DataObjStr:: :py:method:`xml.sax.xmlreader.InputSource.setSystemId`> with module 'xml' has no attribute 'sax.xmlreader.InputSource'
2868) <DataObjStr:: :py:class:`xml.sax.xmlreader.Locator`> with module 'xml' has no attribute 'sax.xmlreader.Locator'
2869) <DataObjStr:: :py:method:`xml.sax.xmlreader.Locator.getColumnNumber`> with module 'xml' has no attribute 'sax.xmlreader.Locator'
2870) <DataObjStr:: :py:method:`xml.sax.xmlreader.Locator.getLineNumber`> with module 'xml' has no attribute 'sax.xmlreader.Locator'
2871) <DataObjStr:: :py:method:`xml.sax.xmlreader.Locator.getPublicId`> with module 'xml' has no attribute 'sax.xmlreader.Locator'
2872) <DataObjStr:: :py:method:`xml.sax.xmlreader.Locator.getSystemId`> with module 'xml' has no attribute 'sax.xmlreader.Locator'
2873) <DataObjStr:: :py:class:`xml.sax.xmlreader.XMLReader`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2874) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.getContentHandler`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2875) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.getDTDHandler`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2876) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.getEntityResolver`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2877) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.getErrorHandler`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2878) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.getFeature`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2879) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.getProperty`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2880) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.parse`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2881) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.setContentHandler`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2882) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.setDTDHandler`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2883) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.setEntityResolver`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2884) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.setErrorHandler`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2885) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.setFeature`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2886) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.setLocale`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2887) <DataObjStr:: :py:method:`xml.sax.xmlreader.XMLReader.setProperty`> with module 'xml' has no attribute 'sax.xmlreader.XMLReader'
2888) <DataObjStr:: :py:class:`xmlrpc.client.Binary`> with module 'xmlrpc' has no attribute 'client.Binary'
2889) <DataObjStr:: :py:attribute:`xmlrpc.client.Binary.data`> with module 'xmlrpc' has no attribute 'client.Binary'
2890) <DataObjStr:: :py:method:`xmlrpc.client.Binary.decode`> with module 'xmlrpc' has no attribute 'client.Binary'
2891) <DataObjStr:: :py:method:`xmlrpc.client.Binary.encode`> with module 'xmlrpc' has no attribute 'client.Binary'
2892) <DataObjStr:: :py:class:`xmlrpc.client.DateTime`> with module 'xmlrpc' has no attribute 'client.DateTime'
2893) <DataObjStr:: :py:method:`xmlrpc.client.DateTime.decode`> with module 'xmlrpc' has no attribute 'client.DateTime'
2894) <DataObjStr:: :py:method:`xmlrpc.client.DateTime.encode`> with module 'xmlrpc' has no attribute 'client.DateTime'
2895) <DataObjStr:: :py:class:`xmlrpc.client.Fault`> with module 'xmlrpc' has no attribute 'client.Fault'
2896) <DataObjStr:: :py:attribute:`xmlrpc.client.Fault.faultCode`> with module 'xmlrpc' has no attribute 'client.Fault'
2897) <DataObjStr:: :py:attribute:`xmlrpc.client.Fault.faultString`> with module 'xmlrpc' has no attribute 'client.Fault'
2898) <DataObjStr:: :py:class:`xmlrpc.client.MultiCall`> with module 'xmlrpc' has no attribute 'client.MultiCall'
2899) <DataObjStr:: :py:class:`xmlrpc.client.ProtocolError`> with module 'xmlrpc' has no attribute 'client.ProtocolError'
2900) <DataObjStr:: :py:attribute:`xmlrpc.client.ProtocolError.errcode`> with module 'xmlrpc' has no attribute 'client.ProtocolError'
2901) <DataObjStr:: :py:attribute:`xmlrpc.client.ProtocolError.errmsg`> with module 'xmlrpc' has no attribute 'client.ProtocolError'
2902) <DataObjStr:: :py:attribute:`xmlrpc.client.ProtocolError.headers`> with module 'xmlrpc' has no attribute 'client.ProtocolError'
2903) <DataObjStr:: :py:attribute:`xmlrpc.client.ProtocolError.url`> with module 'xmlrpc' has no attribute 'client.ProtocolError'
2904) <DataObjStr:: :py:class:`xmlrpc.client.ServerProxy`> with module 'xmlrpc' has no attribute 'client.ServerProxy'
2905) <DataObjStr:: :py:method:`xmlrpc.client.ServerProxy.system.listMethods`> with module 'xmlrpc' has no attribute 'client.ServerProxy.system'
2906) <DataObjStr:: :py:method:`xmlrpc.client.ServerProxy.system.methodHelp`> with module 'xmlrpc' has no attribute 'client.ServerProxy.system'
2907) <DataObjStr:: :py:method:`xmlrpc.client.ServerProxy.system.methodSignature`> with module 'xmlrpc' has no attribute 'client.ServerProxy.system'
2908) <DataObjStr:: :py:function:`xmlrpc.client.dumps`> with module 'xmlrpc' has no attribute 'client.dumps'
2909) <DataObjStr:: :py:function:`xmlrpc.client.loads`> with module 'xmlrpc' has no attribute 'client.loads'
2910) <DataObjStr:: :py:class:`xmlrpc.server.CGIXMLRPCRequestHandler`> with module 'xmlrpc' has no attribute 'server.CGIXMLRPCRequestHandler'
2911) <DataObjStr:: :py:method:`xmlrpc.server.CGIXMLRPCRequestHandler.handle_request`> with module 'xmlrpc' has no attribute 'server.CGIXMLRPCRequestHandler'
2912) <DataObjStr:: :py:method:`xmlrpc.server.CGIXMLRPCRequestHandler.register_function`> with module 'xmlrpc' has no attribute 'server.CGIXMLRPCRequestHandler'
2913) <DataObjStr:: :py:method:`xmlrpc.server.CGIXMLRPCRequestHandler.register_instance`> with module 'xmlrpc' has no attribute 'server.CGIXMLRPCRequestHandler'
2914) <DataObjStr:: :py:method:`xmlrpc.server.CGIXMLRPCRequestHandler.register_introspection_functions`> with module 'xmlrpc' has no attribute 'server.CGIXMLRPCRequestHandler'
2915) <DataObjStr:: :py:method:`xmlrpc.server.CGIXMLRPCRequestHandler.register_multicall_functions`> with module 'xmlrpc' has no attribute 'server.CGIXMLRPCRequestHandler'
2916) <DataObjStr:: :py:class:`xmlrpc.server.DocCGIXMLRPCRequestHandler`> with module 'xmlrpc' has no attribute 'server.DocCGIXMLRPCRequestHandler'
2917) <DataObjStr:: :py:method:`xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_documentation`> with module 'xmlrpc' has no attribute 'server.DocCGIXMLRPCRequestHandler'
2918) <DataObjStr:: :py:method:`xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_name`> with module 'xmlrpc' has no attribute 'server.DocCGIXMLRPCRequestHandler'
2919) <DataObjStr:: :py:method:`xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_title`> with module 'xmlrpc' has no attribute 'server.DocCGIXMLRPCRequestHandler'
2920) <DataObjStr:: :py:class:`xmlrpc.server.DocXMLRPCRequestHandler`> with module 'xmlrpc' has no attribute 'server.DocXMLRPCRequestHandler'
2921) <DataObjStr:: :py:class:`xmlrpc.server.DocXMLRPCServer`> with module 'xmlrpc' has no attribute 'server.DocXMLRPCServer'
2922) <DataObjStr:: :py:method:`xmlrpc.server.DocXMLRPCServer.set_server_documentation`> with module 'xmlrpc' has no attribute 'server.DocXMLRPCServer'
2923) <DataObjStr:: :py:method:`xmlrpc.server.DocXMLRPCServer.set_server_name`> with module 'xmlrpc' has no attribute 'server.DocXMLRPCServer'
2924) <DataObjStr:: :py:method:`xmlrpc.server.DocXMLRPCServer.set_server_title`> with module 'xmlrpc' has no attribute 'server.DocXMLRPCServer'
2925) <DataObjStr:: :py:class:`xmlrpc.server.SimpleXMLRPCRequestHandler`> with module 'xmlrpc' has no attribute 'server.SimpleXMLRPCRequestHandler'
2926) <DataObjStr:: :py:attribute:`xmlrpc.server.SimpleXMLRPCRequestHandler.rpc_paths`> with module 'xmlrpc' has no attribute 'server.SimpleXMLRPCRequestHandler'
2927) <DataObjStr:: :py:class:`xmlrpc.server.SimpleXMLRPCServer`> with module 'xmlrpc' has no attribute 'server.SimpleXMLRPCServer'
2928) <DataObjStr:: :py:method:`xmlrpc.server.SimpleXMLRPCServer.register_function`> with module 'xmlrpc' has no attribute 'server.SimpleXMLRPCServer'
2929) <DataObjStr:: :py:method:`xmlrpc.server.SimpleXMLRPCServer.register_instance`> with module 'xmlrpc' has no attribute 'server.SimpleXMLRPCServer'
2930) <DataObjStr:: :py:method:`xmlrpc.server.SimpleXMLRPCServer.register_introspection_functions`> with module 'xmlrpc' has no attribute 'server.SimpleXMLRPCServer'
2931) <DataObjStr:: :py:method:`xmlrpc.server.SimpleXMLRPCServer.register_multicall_functions`> with module 'xmlrpc' has no attribute 'server.SimpleXMLRPCServer'
2932) <DataObjStr:: :py:attribute:`zipfile.ZipFile.debug`> with type object 'ZipFile' has no attribute 'debug'
2933) <DataObjStr:: :py:attribute:`zipfile.ZipFile.filename`> with type object 'ZipFile' has no attribute 'filename'
2934) <DataObjStr:: :py:attribute:`zipimport.zipimporter.archive`> with type object 'zipimporter' has no attribute 'archive'
2935) <DataObjStr:: :py:attribute:`zipimport.zipimporter.prefix`> with type object 'zipimporter' has no attribute 'prefix'
2936) <DataObjStr:: :py:method:`zlib.Compress.compress`> with module 'zlib' has no attribute 'Compress'
2937) <DataObjStr:: :py:method:`zlib.Compress.copy`> with module 'zlib' has no attribute 'Compress'
2938) <DataObjStr:: :py:method:`zlib.Compress.flush`> with module 'zlib' has no attribute 'Compress'
2939) <DataObjStr:: :py:method:`zlib.Decompress.copy`> with module 'zlib' has no attribute 'Decompress'
2940) <DataObjStr:: :py:method:`zlib.Decompress.decompress`> with module 'zlib' has no attribute 'Decompress'
2941) <DataObjStr:: :py:attribute:`zlib.Decompress.eof`> with module 'zlib' has no attribute 'Decompress'
2942) <DataObjStr:: :py:method:`zlib.Decompress.flush`> with module 'zlib' has no attribute 'Decompress'
2943) <DataObjStr:: :py:attribute:`zlib.Decompress.unconsumed_tail`> with module 'zlib' has no attribute 'Decompress'
2944) <DataObjStr:: :py:attribute:`zlib.Decompress.unused_data`> with module 'zlib' has no attribute 'Decompress'
1) _thread.LockType should be data but is <class '_thread.lock'>
2) abc.abstractclassmethod should be function but is <class 'abc.abstractclassmethod'>
3) abc.abstractproperty should be function but is <class 'abc.abstractproperty'>
4) abc.abstractstaticmethod should be function but is <class 'abc.abstractstaticmethod'>
5) contextlib.closing should be function but is <class 'contextlib.closing'>
6) contextlib.nullcontext should be function but is <class 'contextlib.nullcontext'>
7) contextlib.redirect_stderr should be function but is <class 'contextlib.redirect_stderr'>
8) contextlib.redirect_stdout should be function but is <class 'contextlib.redirect_stdout'>
9) contextlib.suppress should be function but is <class 'contextlib.suppress'>
10) ctypes.memmove should be function but is <CFunctionType object at 0x7f602a39dc00>
11) ctypes.memset should be function but is <CFunctionType object at 0x7f602a39dcc0>
12) dbm.error should be exception but is (<class 'dbm.error'>, <class 'OSError'>)
13) decimal.BasicContext should be class but is Context(prec=9, rounding=ROUND_HALF_UP, Emin=-999999, Emax=999999, capitals=1, clamp=0, flags=[], traps=[Clamped, InvalidOperation, DivisionByZero, Overflow, Underflow])
14) decimal.DefaultContext should be class but is Context(prec=28, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999, capitals=1, clamp=0, flags=[], traps=[InvalidOperation, DivisionByZero, Overflow])
15) decimal.ExtendedContext should be class but is Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999, capitals=1, clamp=0, flags=[], traps=[])
16) functools.cached_property should be function but is <class 'functools.cached_property'>
17) functools.partial should be function but is <class 'functools.partial'>
18) hashlib.blake2b should be function but is <class '_blake2.blake2b'>
19) hashlib.blake2s should be function but is <class '_blake2.blake2s'>
20) inspect.Parameter.empty should be attribute but is <class 'inspect._empty'>
21) inspect.Signature.empty should be attribute but is <class 'inspect._empty'>
22) itertools.accumulate should be function but is <class 'itertools.accumulate'>
23) itertools.chain should be function but is <class 'itertools.chain'>
24) itertools.combinations should be function but is <class 'itertools.combinations'>
25) itertools.combinations_with_replacement should be function but is <class 'itertools.combinations_with_replacement'>
26) itertools.compress should be function but is <class 'itertools.compress'>
27) itertools.count should be function but is <class 'itertools.count'>
28) itertools.cycle should be function but is <class 'itertools.cycle'>
29) itertools.dropwhile should be function but is <class 'itertools.dropwhile'>
30) itertools.filterfalse should be function but is <class 'itertools.filterfalse'>
31) itertools.groupby should be function but is <class 'itertools.groupby'>
32) itertools.islice should be function but is <class 'itertools.islice'>
33) itertools.pairwise should be function but is <class 'itertools.pairwise'>
34) itertools.permutations should be function but is <class 'itertools.permutations'>
35) itertools.product should be function but is <class 'itertools.product'>
36) itertools.repeat should be function but is <class 'itertools.repeat'>
37) itertools.starmap should be function but is <class 'itertools.starmap'>
38) itertools.takewhile should be function but is <class 'itertools.takewhile'>
39) itertools.zip_longest should be function but is <class 'itertools.zip_longest'>
40) multiprocessing.Barrier should be class but is <bound method BaseContext.Barrier of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
41) multiprocessing.BoundedSemaphore should be class but is <bound method BaseContext.BoundedSemaphore of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
42) multiprocessing.Condition should be class but is <bound method BaseContext.Condition of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
43) multiprocessing.Event should be class but is <bound method BaseContext.Event of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
44) multiprocessing.JoinableQueue should be class but is <bound method BaseContext.JoinableQueue of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
45) multiprocessing.Lock should be class but is <bound method BaseContext.Lock of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
46) multiprocessing.Queue should be class but is <bound method BaseContext.Queue of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
47) multiprocessing.RLock should be class but is <bound method BaseContext.RLock of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
48) multiprocessing.Semaphore should be class but is <bound method BaseContext.Semaphore of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
49) multiprocessing.SimpleQueue should be class but is <bound method BaseContext.SimpleQueue of <multiprocessing.context.DefaultContext object at 0x7f602911ac20>>
50) operator.attrgetter should be function but is <class 'operator.attrgetter'>
51) operator.itemgetter should be function but is <class 'operator.itemgetter'>
52) operator.methodcaller should be function but is <class 'operator.methodcaller'>
53) pickle.Pickler.persistent_id should be method but is <attribute 'persistent_id' of '_pickle.Pickler' objects>
54) pickle.Unpickler.persistent_load should be method but is <attribute 'persistent_load' of '_pickle.Unpickler' objects>
55) select.epoll should be function but is <class 'select.epoll'>
56) smtpd.SMTPServer.channel_class should be attribute but is <class 'smtpd.SMTPChannel'>
57) socket.SocketType should be data but is <class '_socket.socket'>
58) socket.socket should be function but is <class 'socket.socket'>
59) ssl.SSLContext.set_servername_callback should be attribute but is <function SSLContext.set_servername_callback at 0x7f602aa93be0>
60) ssl.SSLContext.sslobject_class should be attribute but is <class 'ssl.SSLObject'>
61) ssl.SSLContext.sslsocket_class should be attribute but is <class 'ssl.SSLSocket'>
62) sys.__breakpointhook__ should be data but is <built-in function breakpointhook>
63) sys.__displayhook__ should be data but is <built-in function displayhook>
64) sys.__excepthook__ should be data but is <built-in function excepthook>
65) sys.__interactivehook__ should be data but is <function enablerlcompleter.<locals>.register_readline at 0x7f602b365e10>
66) sys.__unraisablehook__ should be data but is <built-in function unraisablehook>
67) tempfile.SpooledTemporaryFile should be function but is <class 'tempfile.SpooledTemporaryFile'>
68) tempfile.TemporaryDirectory should be function but is <class 'tempfile.TemporaryDirectory'>
69) threading.Lock should be class but is <built-in function allocate_lock>
70) threading.RLock should be class but is <function RLock at 0x7f602b21bb50>
71) threading.__excepthook__ should be data but is <built-in function _excepthook>
72) turtle.Screen should be class but is <function Screen at 0x7f602801d2d0>
73) types.AsyncGeneratorType should be data but is <class 'async_generator'>
74) types.BuiltinFunctionType should be data but is <class 'builtin_function_or_method'>
75) types.BuiltinMethodType should be data but is <class 'builtin_function_or_method'>
76) types.CellType should be data but is <class 'cell'>
77) types.ClassMethodDescriptorType should be data but is <class 'classmethod_descriptor'>
78) types.CoroutineType should be data but is <class 'coroutine'>
79) types.DynamicClassAttribute should be function but is <class 'types.DynamicClassAttribute'>
80) types.EllipsisType should be data but is <class 'ellipsis'>
81) types.FrameType should be data but is <class 'frame'>
82) types.FunctionType should be data but is <class 'function'>
83) types.GeneratorType should be data but is <class 'generator'>
84) types.GetSetDescriptorType should be data but is <class 'getset_descriptor'>
85) types.LambdaType should be data but is <class 'function'>
86) types.MemberDescriptorType should be data but is <class 'member_descriptor'>
87) types.MethodDescriptorType should be data but is <class 'method_descriptor'>
88) types.MethodType should be data but is <class 'method'>
89) types.MethodWrapperType should be data but is <class 'method-wrapper'>
90) types.NoneType should be data but is <class 'NoneType'>
91) types.NotImplementedType should be data but is <class 'NotImplementedType'>
92) types.UnionType should be data but is <class 'types.UnionType'>
93) types.WrapperDescriptorType should be data but is <class 'wrapper_descriptor'>
94) typing.AbstractSet should be class but is typing.AbstractSet
95) typing.Annotated should be data but is <class 'typing.Annotated'>
96) typing.AsyncContextManager should be class but is typing.AsyncContextManager
97) typing.AsyncGenerator should be class but is typing.AsyncGenerator
98) typing.AsyncIterable should be class but is typing.AsyncIterable
99) typing.AsyncIterator should be class but is typing.AsyncIterator
100) typing.Awaitable should be class but is typing.Awaitable
101) typing.ByteString should be class but is typing.ByteString
102) typing.ChainMap should be class but is typing.ChainMap
103) typing.Collection should be class but is typing.Collection
104) typing.Container should be class but is typing.Container
105) typing.ContextManager should be class but is typing.ContextManager
106) typing.Coroutine should be class but is typing.Coroutine
107) typing.Counter should be class but is typing.Counter
108) typing.DefaultDict should be class but is typing.DefaultDict
109) typing.Deque should be class but is typing.Deque
110) typing.Dict should be class but is typing.Dict
111) typing.FrozenSet should be class but is typing.FrozenSet
112) typing.Generator should be class but is typing.Generator
113) typing.Hashable should be class but is typing.Hashable
114) typing.ItemsView should be class but is typing.ItemsView
115) typing.Iterable should be class but is typing.Iterable
116) typing.Iterator should be class but is typing.Iterator
117) typing.KeysView should be class but is typing.KeysView
118) typing.List should be class but is typing.List
119) typing.Mapping should be class but is typing.Mapping
120) typing.MappingView should be class but is typing.MappingView
121) typing.Match should be class but is typing.Match
122) typing.MutableMapping should be class but is typing.MutableMapping
123) typing.MutableSequence should be class but is typing.MutableSequence
124) typing.MutableSet should be class but is typing.MutableSet
125) typing.NamedTuple should be class but is <function NamedTuple at 0x7f602b13beb0>
126) typing.OrderedDict should be class but is typing.OrderedDict
127) typing.ParamSpecArgs should be data but is <class 'typing.ParamSpecArgs'>
128) typing.ParamSpecKwargs should be data but is <class 'typing.ParamSpecKwargs'>
129) typing.Pattern should be class but is typing.Pattern
130) typing.Reversible should be class but is typing.Reversible
131) typing.Sequence should be class but is typing.Sequence
132) typing.Set should be class but is typing.Set
133) typing.Sized should be class but is typing.Sized
134) typing.Type should be class but is typing.Type
135) typing.TypedDict should be class but is <function TypedDict at 0x7f602b14c0d0>
136) typing.ValuesView should be class but is typing.ValuesView
137) unittest.TestCase.failureException should be attribute but is <class 'AssertionError'>
138) unittest.TestLoader.sortTestMethodsUsing should be attribute but is <function three_way_cmp at 0x7f602923feb0>
139) unittest.TestLoader.suiteClass should be attribute but is <class 'unittest.suite.TestSuite'>
140) unittest.main should be function but is <class 'unittest.main.TestProgram'>
141) weakref.CallableProxyType should be data but is <class 'weakcallableproxy'>
142) weakref.ProxyType should be data but is <class 'weakproxy'>
143) weakref.ReferenceType should be data but is <class 'weakref'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment