diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-19 23:23:16 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-19 23:23:16 +0000 |
commit | abe4d52a1a175b784a5ccae6f31638fb9bf7bfe4 (patch) | |
tree | b39ac1a830a308cc000244bccfd70d41468268b3 /Lib/test/test_tracemalloc.py | |
parent | f8d6f73f264f2adefdd87c03bebb66a069ead393 (diff) | |
parent | 8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818 (diff) | |
download | cpython-abe4d52a1a175b784a5ccae6f31638fb9bf7bfe4.tar.gz cpython-abe4d52a1a175b784a5ccae6f31638fb9bf7bfe4.zip |
Merge doc and comment fixes from 3.5
Diffstat (limited to 'Lib/test/test_tracemalloc.py')
-rw-r--r-- | Lib/test/test_tracemalloc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tracemalloc.py b/Lib/test/test_tracemalloc.py index 359d9c085f6..790ab7ee606 100644 --- a/Lib/test/test_tracemalloc.py +++ b/Lib/test/test_tracemalloc.py @@ -261,7 +261,7 @@ class TestTracemallocEnabled(unittest.TestCase): snapshot.dump(support.TESTFN) self.addCleanup(support.unlink, support.TESTFN) - # load() should recreates the attribute + # load() should recreate the attribute snapshot2 = tracemalloc.Snapshot.load(support.TESTFN) self.assertEqual(snapshot2.test_attr, "new") |