资源简介
中控 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个文件信息
相关资源
- 全新迈锐宝中控导航破解文件及教程
- e语言-易语言雷电模拟器多开中控源码
- 中控考勤机签到程序
- 易语言中控指纹仪连接代码
- flash游戏中控制角色移动的源代码
- 快思聪中控系统中文帮助
- 中控考勤机指纹机人脸机消费机delp
- 投影机RS-232控制代码大全
- 易语言多线程版中控
- ELVIS 中控软件 使用介绍
- 中控人脸/指纹机DEMO(delphi)
- 可编程中控系统编程详细操作教程
- 中控iclock660和F2门禁二次开发程序
- 中控考勤软件报错:无注册类别 解决
- CREATOR中控编程基础教程
- 按键精灵脚本教程之实战全民奇迹中
- 快思聪集中控制系统编程教程
- 中控指纹仪Live20R的WEB开发包.rar
- STM32在ucos中控制循迹小车
- 中控指纹仪Delphi开发样例
- 雷电模拟器中控源码
评论
共有 条评论