summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_csv.py
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2006-05-28 19:13:17 (GMT)
committerArmin Rigo <arigo@tunes.org>2006-05-28 19:13:17 (GMT)
commita3f092751ae5f29957c78a7e86381532629c7fa3 (patch)
tree27eecd5671e5bbe3654c5630a62d1deb7300e80b /Lib/test/test_csv.py
parente9eeab5c0539ede73b52f9df9bd4da8346c91741 (diff)
downloadcpython-a3f092751ae5f29957c78a7e86381532629c7fa3.zip
cpython-a3f092751ae5f29957c78a7e86381532629c7fa3.tar.gz
cpython-a3f092751ae5f29957c78a7e86381532629c7fa3.tar.bz2
("Forward-port" of r46506)
Remove various dependencies on dictionary order in the standard library tests, and one (clearly an oversight, potentially critical) in the standard library itself - base64.py. Remaining open issues: * test_extcall is an output test, messy to make robust * tarfile.py has a potential bug here, but I'm not familiar enough with this code. Filed in as SF bug #1496501. * urllib2.HTTPPasswordMgr() returns a random result if there is more than one matching root path. I'm asking python-dev for clarification...
Diffstat (limited to 'Lib/test/test_csv.py')
-rw-r--r--Lib/test/test_csv.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py
index 8511a5a..feb6ddf 100644
--- a/Lib/test/test_csv.py
+++ b/Lib/test/test_csv.py
@@ -875,7 +875,10 @@ Stonecutters Seafood and Chop House, Lemont, IL, 12/19/02, Week Back
def test_delimiters(self):
sniffer = csv.Sniffer()
dialect = sniffer.sniff(self.sample3)
- self.assertEqual(dialect.delimiter, "0")
+ # given that all three lines in sample3 are equal,
+ # I think that any character could have been 'guessed' as the
+ # delimiter, depending on dictionary order
+ self.assert_(dialect.delimiter in self.sample3)
dialect = sniffer.sniff(self.sample3, delimiters="?,")
self.assertEqual(dialect.delimiter, "?")
dialect = sniffer.sniff(self.sample3, delimiters="/,")