Gregory P. Smith
e14841c19e
strings vs bytes, bytes wins again
2007-08-29 05:06:13 +00:00
Gregory P. Smith
3fd22da612
some test suite cleanup, use tempfile.mkdtemp() in setUp and
...
shutil.rmtree() in tearDown(). add missing tests to the list
in the test_bsddb3 suite.
2007-08-28 08:05:56 +00:00
Collin Winter
a65e94c1bf
Convert raise statements in bsddb.
2007-08-22 21:45:20 +00:00
Guido van Rossum
34d1928766
SF patch# 1770008 by Christian Heimes (plus some extras).
...
Completely get rid of StringIO.py and cStringIO.c.
I had to fix a few tests and modules beyond what Christian did, and
invent a few conventions. E.g. in elementtree, I chose to
write/return Unicode strings whe no encoding is given, but bytes when
an explicit encoding is given. Also mimetools was made to always
assume binary files.
2007-08-09 01:03:29 +00:00
Guido van Rossum
b940e113bf
SF patch 1631942 by Collin Winter:
...
(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
2007-01-10 16:19:56 +00:00
Guido van Rossum
e2b70bcf74
Get rid of dict.has_key(). Boy this has a lot of repercussions!
...
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.
2006-08-18 22:13:04 +00:00
Gregory P. Smith
6564ca72ad
fix import to work with either module name.
2005-06-09 07:11:42 +00:00
Anthony Baxter
95a2a4ea70
Tools/scripts/reindent.py _is_ your friend
2005-06-08 04:35:50 +00:00
Gregory P. Smith
889bca0df1
make the tests that expect uncatchable exceptions from a callback test
...
for them in a roundabout way (catching and parsing stderr)
keeps test output clean.
2005-06-06 17:30:22 +00:00
Tim Peters
5d36a55eaa
Whitespace normalization.
2005-06-03 22:40:27 +00:00
Gregory P. Smith
e4ed2de260
pybsddb 4.3.1, adds support for DB.set_bt_compare database btree comparison
...
functions written in python.
contributed by <frederic.gobry@epfl.ch>
2005-06-03 07:03:07 +00:00