diff options
author | Łukasz Langa <lukasz@langa.pl> | 2011-04-29 16:17:51 +0200 |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2011-04-29 16:17:51 +0200 |
commit | 82710c594b578a3da57e63437ef5fe346ef0f4a7 (patch) | |
tree | eb18f2d043890a19c15ecc1e3f77d7c218a576c9 /Lib/test/test_configparser.py | |
parent | 0cd25c9dd95771dfebc22dab9cd07d4a3b916ced (diff) | |
parent | 5c7419d4332a9929d8ba0db13d5e2c0db3aee160 (diff) | |
download | cpython-git-82710c594b578a3da57e63437ef5fe346ef0f4a7.tar.gz |
Merged minor cleanups from 3.2.
Diffstat (limited to 'Lib/test/test_configparser.py')
-rw-r--r-- | Lib/test/test_configparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_configparser.py b/Lib/test/test_configparser.py index a712b2b396..1db92176f8 100644 --- a/Lib/test/test_configparser.py +++ b/Lib/test/test_configparser.py @@ -993,7 +993,7 @@ class RawConfigParserTestCase(BasicTestCase): cf.add_section(123) cf.set(123, 'this is sick', True) self.assertEqual(cf.get(123, 'this is sick'), True) - if cf._dict.__class__ is configparser._default_dict: + if cf._dict is configparser._default_dict: # would not work for SortedDict; only checking for the most common # default dictionary (OrderedDict) cf.optionxform = lambda x: x |