Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:20:19) [MSC v.1925 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
import pydbg
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\a\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pydbg\__init__.py", line 39, in <module>
from breakpoint import *
ModuleNotFoundError: No module named 'breakpoint'
__init__.py
следующее:
__all__ = \
[
"breakpoint",
"defines",
"hardware_breakpoint",
"memory_breakpoint",
"memory_snapshot_block",
"memory_snapshot_context",
"pdx",
"pydbg",
"pydbg_client",
"pydbg_core",
"system_dll",
"windows_h",
]
from breakpoint import *
from defines import *
from hardware_breakpoint import *
from memory_breakpoint import *
from memory_snapshot_block import *
from memory_snapshot_context import *
from pdx import *
from pydbg import *
from pydbg_client import *
from pydbg_core import *
from system_dll import *
from windows_h import *
и в том же каталоге есть breakpoint.py, define.py, ...
Как я могу исправить это?