python float 类不会出现在类层次结构中,除非“prodded”

发布于 2024-11-06 08:23:40 字数 728 浏览 1 评论 0原文

如果我使用此函数打印出 python 类层次结构,由于某种原因,类型“float”不会出现在输出中。

def printHier(cls, indent = 0, tab = "  "):

    print "%s%s" % (tab*indent, cls.__name__)

    try:
        subclasses = cls.__subclasses__()
    except TypeError:
        subclasses = cls.__subclasses__(cls)

    subclasses.sort(key = lambda v: v.__name__)

    for subcls in subclasses:
        printHier(subcls, indent = indent + 1)

printHier(object)

如果我定义这个附加函数(如下)并在调用第一个函数之前调用它,那么 float 就会出现。谁能解释这种奇怪的行为?一些Python类有什么偷懒的地方吗?我想知道是否还缺少其他一些课程。

def tweak(cls):
    """
     for some reason "float" doesn't show up in hierarchy unless
     we "prod" it...
    """
    superclasses = cls.__mro__

tweak(float)

If I use this function to print out a python class hierarchy for some reason the type "float" doesn't show up in the output.

def printHier(cls, indent = 0, tab = "  "):

    print "%s%s" % (tab*indent, cls.__name__)

    try:
        subclasses = cls.__subclasses__()
    except TypeError:
        subclasses = cls.__subclasses__(cls)

    subclasses.sort(key = lambda v: v.__name__)

    for subcls in subclasses:
        printHier(subcls, indent = indent + 1)

printHier(object)

If I define this additional function (below) and call it before calling the first, then float shows up. Can anyone explain this odd behavior? Is there something lazy about some python classes? I'm wondering if it might be missing some other classes too.

def tweak(cls):
    """
     for some reason "float" doesn't show up in hierarchy unless
     we "prod" it...
    """
    superclasses = cls.__mro__

tweak(float)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒儿 2024-11-13 08:23:40

这似乎是Python 2.6.1的问题。 float 在我的安装(2.6.4 和 2.7,均在 Windows 上)以及 Jay 和 Samplebias 测试的其他较新版本上显示。

我在 CPython 变更日志中查找了相关内容,但找不到任何似乎相关的内容。

It seems to be a problem with Python 2.6.1. float shows on my installations (2.6.4 and 2.7, both on Windows) and on other newer versions tested by Jay and samplebias.

I looked for something relevant in the CPython changelog, but I couldn't find anything that seems to be related.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文