Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #24991 > unrolled thread

Re: API design question for dbf.py

Started byMRAB <python@mrabarnett.plus.com>
First post2012-07-06 23:26 +0100
Last post2012-07-06 23:26 +0100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: API design question for dbf.py MRAB <python@mrabarnett.plus.com> - 2012-07-06 23:26 +0100

#24991 — Re: API design question for dbf.py

FromMRAB <python@mrabarnett.plus.com>
Date2012-07-06 23:26 +0100
SubjectRe: API design question for dbf.py
Message-ID<mailman.1876.1341613574.4697.python-list@python.org>
On 06/07/2012 22:34, Ethan Furman wrote:
> I'm looking for some free advice.  ;)
>
> My dbf module has three basic containers, all of which support list-like
> access:  Table, List, and Index, each of which is filled with _DbfRecords.
>
> The fun part is that a _DbfRecord can compare equal to another
> _DbfRecord, a _DbfRecordTemplate, a tuple with the same values in the
> same locations, or a dict with the same keys/fields and values.
>
> The really fun part is __contains__:  should the __contains__ method
> return True when a _DbfRecordTemplate, tuple, or dict is looked up in
> the Table, List, or Index and there is a matching record?
>
Well, if x is in c and x == y, then y is in c. Does that help? ;-)

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web