~m4v/+junk/Factos

« back to all changes in this revision

Viewing changes to databases.py

  • Committer: Elián Hanisch
  • Date: 2010-05-16 06:10:54 UTC
  • Revision ID: lambdae2@gmail.com-20100516061054-y63xd9ln3i8fykiz
reactoring, drop setting table name with config options, is useless.

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        return zip(self.keys(), self.values())
136
136
 
137
137
    def __repr__(self):
138
 
        return "<Row %s>" %', '.join([ '%s %s' %pair for pair in self.items() ])
 
138
        return "<Row %s>" %', '.join(self.values())
139
139
 
140
140
    def __iter__(self):
141
141
        return iter(self.values())