• 大小: 100MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2022-06-02
  • 语言: 其他
  • 标签: 中控  ZKECO  

资源简介

中控 ZKECO 3.56一卡通程序 正式版 ZKECO_3.5.6_5558 难得资源,程序由于空间限制分两部分

资源截图

代码片段和文件信息

# Copyright 2007 Google Inc. All Rights Reserved.
# Licensed to PSF under a Contributor Agreement.

“““Abstract base Classes (ABCs) according to PEP 3119.“““


# Instance of old-style class
class _C: pass
_InstanceType = type(_C())


def abstractmethod(funcobj):
    “““A decorator indicating abstract methods.

    Requires that the metaclass is ABCmeta or derived from it.  A
    class that has a metaclass derived from ABCmeta cannot be
    instantiated unless all of its abstract methods are overridden.
    The abstract methods can be called using any of the normal
    ‘super‘ call mechanisms.

    Usage:

        class C:
            __metaclass__ = ABCmeta
            @abstractmethod
            def my_abstract_method(self ...):
                ...
    “““
    funcobj.__isabstractmethod__ = True
    return funcobj


class abstractproperty(property):
    “““A decorator indicating abstract properties.

    Requires that the metaclass is ABCmeta or derived from it.  A
    class that has a metaclass derived from ABCmeta cannot be
    instantiated unless all of its abstract properties are overridden.
    The abstract properties can be called using any of the normal
    ‘super‘ call mechanisms.

    Usage:

        class C:
            __metaclass__ = ABCmeta
            @abstractproperty
            def my_abstract_property(self):
                ...

    This defines a read-only property; you can also define a read-write
    abstract property using the ‘long‘ form of property declaration:

        class C:
            __metaclass__ = ABCmeta
            def getx(self): ...
            def setx(self value): ...
            x = abstractproperty(getx setx)
    “““
    __isabstractmethod__ = True


class ABCmeta(type):

    “““metaclass for defining Abstract base Classes (ABCs).

    Use this metaclass to create an ABC.  An ABC can be subclassed
    directly and then acts as a mix-in class.  You can also register
    unrelated concrete classes (even built-in classes) and unrelated
    ABCs as ‘virtual subclasses‘ -- these and their descendants will
    be considered subclasses of the registering ABC by the built-in
    issubclass() function but the registering ABC won‘t show up in
    their MRO (Method Resolution Order) nor will method
    implementations defined by the registering ABC be callable (not
    even via super()).

    “““

    # A global counter that is incremented each time a class is
    # registered as a virtual subclass of anything.  It forces the
    # negative cache to be cleared before its next use.
    _abc_invalidation_counter = 0

    def __new__(mcls name bases namespace):
        cls = super(ABCmeta mcls).__new__(mcls name bases namespace)
        # Compute set of abstract method names
        abstracts = set(name
                     for name value in namespace.items()
                     if getattr(value “__isabstractmethod__“

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    2435072  2012-01-16 10:31  ZKECO_3.5.6_5558\autorun.exe

     文件       2238  2012-01-16 10:31  ZKECO_3.5.6_5558\autorun.ico

     文件         47  2012-01-16 10:31  ZKECO_3.5.6_5558\autorun.inf

     文件      10740  2012-01-16 10:31  ZKECO_3.5.6_5558\autorun.tgt

     文件       2238  2012-01-16 10:31  ZKECO_3.5.6_5558\cddisc.ico

     文件     188416  2012-03-21 09:31  ZKECO_3.5.6_5558\dll_dog32\my3l_Ex.dll

     文件     188416  2012-03-21 09:31  ZKECO_3.5.6_5558\dll_dog64\my3l_Ex.dll

     文件     348160  2012-01-16 10:31  ZKECO_3.5.6_5558\Dll_python\msvcr71.dll

     文件    2257408  2012-01-16 10:31  ZKECO_3.5.6_5558\Dll_python\python26.dll

     文件     353792  2012-01-16 10:31  ZKECO_3.5.6_5558\Dll_python\pythoncom26.dll

     文件     110080  2012-01-16 10:31  ZKECO_3.5.6_5558\Dll_python\pywintypes26.dll

     文件    1044056  2012-02-08 13:58  ZKECO_3.5.6_5558\Image\cns\bg0.bmp

     文件    1080056  2011-11-24 14:38  ZKECO_3.5.6_5558\Image\cns\bg1.bmp

     文件    1080056  2011-11-24 14:37  ZKECO_3.5.6_5558\Image\cns\bg2.bmp

     文件    1080056  2011-11-24 14:38  ZKECO_3.5.6_5558\Image\cns\bg3.bmp

     文件    1080056  2011-11-25 14:42  ZKECO_3.5.6_5558\Image\cns\bg4.bmp

     文件    1080056  2011-11-24 14:38  ZKECO_3.5.6_5558\Image\cns\bg5.bmp

     文件    1080056  2014-09-04 10:04  ZKECO_3.5.6_5558\Image\cns\bg6.bmp

     文件    1080056  2011-11-24 14:38  ZKECO_3.5.6_5558\Image\cns\bg7.bmp

     文件    1008056  2012-02-03 18:01  ZKECO_3.5.6_5558\Image\cns\bg8.bmp

     文件    5009319  2012-02-07 11:19  ZKECO_3.5.6_5558\Image\cns\Image.rar

     文件      40448  2012-02-08 14:50  ZKECO_3.5.6_5558\Image\cns\Thumbs.db

     文件     160054  2011-11-24 14:38  ZKECO_3.5.6_5558\Image\cns\TopLogo.bmp

     文件    1200056  2011-11-24 14:37  ZKECO_3.5.6_5558\Image\cns\Welcom.bmp

     文件    1600056  2012-01-16 10:30  ZKECO_3.5.6_5558\Image\cns\Welcom1.bmp

     文件    1600056  2012-01-16 10:30  ZKECO_3.5.6_5558\Image\cns\Welcom2.bmp

     文件    1600054  2012-01-16 10:30  ZKECO_3.5.6_5558\Image\cns\Welcom3.bmp

     文件    1080056  2011-11-08 10:17  ZKECO_3.5.6_5558\Image\en\bg0.bmp

     文件    1080056  2011-11-08 10:17  ZKECO_3.5.6_5558\Image\en\bg1.bmp

     文件    1080056  2011-11-08 10:17  ZKECO_3.5.6_5558\Image\en\bg2.bmp

............此处省略6356个文件信息

评论

共有 条评论