218 |
values.sort() |
values.sort() |
219 |
return values |
return values |
220 |
|
|
221 |
|
def Dependencies(self): |
222 |
|
"""Return an empty sequence. The DBFTable doesn't depend on anything""" |
223 |
|
return () |
224 |
|
|
225 |
# DBF specific interface parts. |
# DBF specific interface parts. |
226 |
|
|
251 |
|
|
252 |
|
|
253 |
|
|
|
# Temporary backwards compatibility |
|
|
Table = DBFTable |
|
|
|
|
|
|
|
|
|
|
254 |
class MemoryColumn: |
class MemoryColumn: |
255 |
|
|
256 |
def __init__(self, name, type, index): |
def __init__(self, name, type, index): |
347 |
values.sort() |
values.sort() |
348 |
return values |
return values |
349 |
|
|
350 |
|
def Dependencies(self): |
351 |
|
"""Return an empty sequence. The MemoryTable doesn't depend on anything |
352 |
|
""" |
353 |
|
return () |
354 |
|
|
355 |
def write_record(self, record, values): |
def write_record(self, record, values): |
356 |
# TODO: Check for correct lenght and perhaps also |
# TODO: Check for correct lenght and perhaps also |