Changeset 227


Ignore:
Timestamp:
04/15/10 10:46:13 (14 years ago)
Author:
bas
Message:

forgot to add the old_data_structure function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/PBSQuery.py

    r223 r227  
    8181        # a[key] = value, key and value are data type string
    8282        #
    83         OLD_DATA_STRUCTURE = True
     83        OLD_DATA_STRUCTURE = False
    8484
    8585        def __init__(self, server=None):
     
    313313        def new_data_structure(self):
    314314                """
    315                 Use new data structure, will be standard in future release
     315                Use the new data structure. Is now the default
    316316                """
    317317                self.OLD_DATA_STRUCTURE = False
     318
     319        def old_data_structure(self):
     320                """
     321                Use the old data structure. This function is obselete and
     322                will be removed in a future release
     323                """
     324                self.OLD_DATA_STRUCTURE = True
    318325
    319326class _PBSobject(UserDict.UserDict):
Note: See TracChangeset for help on using the changeset viewer.