diff options
| author | Tim Peters <tim@python.org> | 2013-09-06 20:42:47 (GMT) |
|---|---|---|
| committer | Tim Peters <tim@python.org> | 2013-09-06 20:42:47 (GMT) |
| commit | f4ecfae75f9e4e52c07e5561077855aebaa6e77a (patch) | |
| tree | 24fc14ed1d452b5a254a95367b55704a2fb7e902 /Lib | |
| parent | 66ff01fede0a566376d7026b48554e7d75c2300a (diff) | |
| parent | 23d7d4e85cf5aac97bc8ae4ff0e753d70ad8e6e8 (diff) | |
| download | cpython-f4ecfae75f9e4e52c07e5561077855aebaa6e77a.zip cpython-f4ecfae75f9e4e52c07e5561077855aebaa6e77a.tar.gz cpython-f4ecfae75f9e4e52c07e5561077855aebaa6e77a.tar.bz2 | |
Merge 3.3 into default.
Issue 18944: fix a 1-character typo in test_set.py.
The error caused test_inline_methods() to test much less than intended.
Caught (& fixed) by Armin Rigo.
Diffstat (limited to 'Lib')
| -rw-r--r-- | Lib/test/test_set.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py index f8c7180..13cefec 100644 --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -1672,7 +1672,7 @@ class TestVariousIteratorArgs(unittest.TestCase): for meth in (s.union, s.intersection, s.difference, s.symmetric_difference, s.isdisjoint): for g in (G, I, Ig, L, R): expected = meth(data) - actual = meth(G(data)) + actual = meth(g(data)) if isinstance(expected, bool): self.assertEqual(actual, expected) else: |
