Package dbf :: Module ver_2 :: Class RecordVaporWare
[hide private]
[frames] | no frames]

Class RecordVaporWare

source code

object --+
         |
        RecordVaporWare

Provides routines to mimic a dbf record, but all values are non-existent.

Instance Methods [hide private]
 
__contains__(self, key) source code
 
__eq__(self, other) source code
 
__getattr__(self, name) source code
 
__getitem__(self, item) source code
 
__len__(self) source code
 
__ne__(self, other) source code
 
__nonzero__(self)
Vapor records are always False
source code
 
__setattr__(self, name, value)
x.__setattr__('name', value) <==> x.name = value
source code
 
__setitem__(self, name, value) source code
 
__repr__(self)
repr(x)
source code
 
__str__(self)
str(x)
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __reduce__, __reduce_ex__, __sizeof__, __subclasshook__

Static Methods [hide private]
a new object with type S, a subtype of T
__new__(cls, position, sequence)
record = ascii array of entire record layout=record specification memo = memo object for table
source code
Properties [hide private]
  _recnum
  _recno
  _sequence

Inherited from object: __class__

Method Details [hide private]

__new__(cls, position, sequence)
Static Method

source code 

record = ascii array of entire record layout=record specification memo = memo object for table

Returns: a new object with type S, a subtype of T
Overrides: object.__new__

__setattr__(self, name, value)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

Property Details [hide private]

_recnum

Get Method:
unreachable._recnum(self)