中控 ZKECO 3.5.6_5558 PART 1 一卡通程序


中控 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_5558autorun.exe

     文件       2238  2012-01-16 10:31  ZKECO_3.5.6_5558autorun.ico

     文件         47  2012-01-16 10:31  ZKECO_3.5.6_5558autorun.inf

     文件      10740  2012-01-16 10:31  ZKECO_3.5.6_5558autorun.tgt

     文件       2238  2012-01-16 10:31  ZKECO_3.5.6_5558cddisc.ico

     文件     188416  2012-03-21 09:31  ZKECO_3.5.6_5558dll_dog32my3l_Ex.dll

     文件     188416  2012-03-21 09:31  ZKECO_3.5.6_5558dll_dog64my3l_Ex.dll

     文件     348160  2012-01-16 10:31  ZKECO_3.5.6_5558Dll_pythonmsvcr71.dll

     文件    2257408  2012-01-16 10:31  ZKECO_3.5.6_5558Dll_pythonpython26.dll

     文件     353792  2012-01-16 10:31  ZKECO_3.5.6_5558Dll_pythonpythoncom26.dll

     文件     110080  2012-01-16 10:31  ZKECO_3.5.6_5558Dll_pythonpywintypes26.dll

     文件    1044056  2012-02-08 13:58  ZKECO_3.5.6_5558Imagecnsg0.bmp

     文件    1080056  2011-11-24 14:38  ZKECO_3.5.6_5558Imagecnsg1.bmp

     文件    1080056  2011-11-24 14:37  ZKECO_3.5.6_5558Imagecnsg2.bmp

     文件    1080056  2011-11-24 14:38  ZKECO_3.5.6_5558Imagecnsg3.bmp

     文件    1080056  2011-11-25 14:42  ZKECO_3.5.6_5558Imagecnsg4.bmp

     文件    1080056  2011-11-24 14:38  ZKECO_3.5.6_5558Imagecnsg5.bmp

     文件    1080056  2014-09-04 10:04  ZKECO_3.5.6_5558Imagecnsg6.bmp

     文件    1080056  2011-11-24 14:38  ZKECO_3.5.6_5558Imagecnsg7.bmp

     文件    1008056  2012-02-03 18:01  ZKECO_3.5.6_5558Imagecnsg8.bmp

     文件    5009319  2012-02-07 11:19  ZKECO_3.5.6_5558ImagecnsImage.rar

     文件      40448  2012-02-08 14:50  ZKECO_3.5.6_5558ImagecnsThumbs.db

     文件     160054  2011-11-24 14:38  ZKECO_3.5.6_5558ImagecnsTopLogo.bmp

     文件    1200056  2011-11-24 14:37  ZKECO_3.5.6_5558ImagecnsWelcom.bmp

     文件    1600056  2012-01-16 10:30  ZKECO_3.5.6_5558ImagecnsWelcom1.bmp

     文件    1600056  2012-01-16 10:30  ZKECO_3.5.6_5558ImagecnsWelcom2.bmp

     文件    1600054  2012-01-16 10:30  ZKECO_3.5.6_5558ImagecnsWelcom3.bmp

     文件    1080056  2011-11-08 10:17  ZKECO_3.5.6_5558Imageeng0.bmp

     文件    1080056  2011-11-08 10:17  ZKECO_3.5.6_5558Imageeng1.bmp

     文件    1080056  2011-11-08 10:17  ZKECO_3.5.6_5558Imageeng2.bmp

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

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)