File: interface.py

package info (click to toggle)
zope-cmfquickinstallertool 1.5.0-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 172 kB
  • ctags: 120
  • sloc: python: 670; sh: 60; makefile: 38
file content (6 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
try:
    # Zope >= 2.6
    from Interface import Interface, Attribute
except ImportError:
    # Zope < 2.6
    from Interface import Base as Interface, Attribute