mirror of
https://github.com/python/cpython.git
synced 2025-11-20 02:50:14 +00:00
Fixed typo.
This commit is contained in:
parent
76b47655ff
commit
996c3deafe
1 changed files with 2 additions and 2 deletions
|
|
@ -645,8 +645,8 @@ class MmapTests(unittest.TestCase):
|
|||
m1 = mmap.mmap(-1, 100)
|
||||
tagname = "foo"
|
||||
m2 = mmap.mmap(-1, 100, tagname=tagname)
|
||||
self.assertEqual(sys.getsize(m2),
|
||||
sys.getsize(m1) + len(tagname) + 1)
|
||||
self.assertEqual(sys.getsizeof(m2),
|
||||
sys.getsizeof(m1) + len(tagname) + 1)
|
||||
|
||||
@unittest.skipUnless(os.name == 'nt', 'requires Windows')
|
||||
def test_crasher_on_windows(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue