Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Inheriting collections.namedtuple and calling super(C, cls).__new__(cls, ...) results in empty analysis set #312

Closed
@lostmsu

Description

@lostmsu

Sample code:

import collections

class A(collections.namedtuple('A', [])):
  def __new__(cls):
    return super(A, cls).__new__(cls)

a = A()

Possibly related to #15, #174

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions