# encoding: utf-8
# module _testcapi
# from C:\Programs\Python\Python313\DLLs\_testcapi.pyd
# by generator 1.147
# no doc
# no imports

from .object import object

class DocStringNoSignatureTest(object):
    # no doc
    def meth_noargs(self, *args, **kwargs): # real signature unknown
        """ This docstring has no signature. """
        pass

    @classmethod
    def meth_noargs_class(cls, *args, **kwargs): # real signature unknown
        """ This docstring has no signature. """
        pass

    def meth_noargs_coexist(self, *args, **kwargs): # real signature unknown
        """ This docstring has no signature. """
        pass

    def meth_noargs_static(self, *args, **kwargs): # real signature unknown
        """ This docstring has no signature. """
        pass

    def meth_o(self, *args, **kwargs): # real signature unknown
        """ This docstring has no signature. """
        pass

    @classmethod
    def meth_o_class(cls, *args, **kwargs): # real signature unknown
        """ This docstring has no signature. """
        pass

    def meth_o_coexist(self, *args, **kwargs): # real signature unknown
        """ This docstring has no signature. """
        pass

    def meth_o_static(self, *args, **kwargs): # real signature unknown
        """ This docstring has no signature. """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass


