Esempio n. 1
0
        // *** END GENERATED CODE ***

        #endregion


        private bool NeedsInitCall(CodeContext context, PythonType type, int argCount)
        {
            if (!type.HasObjectInit(context))
            {
                return(true);
            }
            else if (_newType.HasObjectNew(context))
            {
                return(argCount > 0);
            }

            return(false);
        }