xinshou6 发表于 2020-05-23 07:27

文档里怎么找函数去哪看

struct.py
__all__ = [
    # Functions
    'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
    'iter_unpack',

    # Classes
    'Struct',

    # Exceptions
    'error'
    ]

from _struct import *
from _struct import _clearcache
from _struct import __doc__


我从哪里找unpack定义 from的_struct 没搜到谢谢
页: [1]
查看完整版本: 文档里怎么找函数去哪看