# encoding: utf-8
# module _testcapi
# from C:\Programs\Python\Python311\DLLs\_testcapi.pyd
# by generator 1.147
# no doc
# no imports

from .object import object

class MethStatic(object):
    """ Class with static methods to test calling conventions """
    def meth_fastcall(self, *args, **kwargs): # real signature unknown
        pass

    def meth_fastcall_keywords(self, *args, **kwargs): # real signature unknown
        pass

    def meth_noargs(self, *args, **kwargs): # real signature unknown
        pass

    def meth_o(self, *args, **kwargs): # real signature unknown
        pass

    def meth_varargs(self, *args, **kwargs): # real signature unknown
        pass

    def meth_varargs_keywords(self, *args, **kwargs): # real signature unknown
        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


