|
|
|||
File indexing completed on 2026-04-20 07:58:58
0001 """ 0002 sequential number class 0003 0004 """ 0005 0006 from .spec_base import SpecBase 0007 0008 0009 class SeqNumberSpec(SpecBase): 0010 # attributes 0011 attributesWithTypes = ( 0012 "numberName:text primary key", 0013 "curVal:integer", 0014 ) 0015 0016 # constructor 0017 def __init__(self): 0018 SpecBase.__init__(self)
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|