summaryrefslogtreecommitdiffstats
path: root/Lib/bsddb/test/test_compare.py
Commit message (Collapse)AuthorAgeFilesLines
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
| | | | | | (a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-1/+2
| | | | | | Not all code has been fixed yet; this is just a checkpoint... The C API still has PyDict_HasKey() and _HasKeyString(); not sure if I want to change those just yet.
* fix import to work with either module name.Gregory P. Smith2005-06-091-1/+6
|
* Tools/scripts/reindent.py _is_ your friendAnthony Baxter2005-06-081-26/+26
|
* make the tests that expect uncatchable exceptions from a callback testGregory P. Smith2005-06-061-19/+48
| | | | | | for them in a roundabout way (catching and parsing stderr) keeps test output clean.
* Whitespace normalization.Tim Peters2005-06-031-186/+186
|
* pybsddb 4.3.1, adds support for DB.set_bt_compare database btree comparisonGregory P. Smith2005-06-031-0/+215
functions written in python. contributed by <frederic.gobry@epfl.ch>