mirror of
https://github.com/python/cpython.git
synced 2025-07-24 19:54:21 +00:00
Replace KB unit with KiB (#4293)
kB (*kilo* byte) unit means 1000 bytes, whereas KiB ("kibibyte") means 1024 bytes. KB was misused: replace kB or KB with KiB when appropriate. Same change for MB and GB which become MiB and GiB. Change the output of Tools/iobench/iobench.py. Round also the size of the documentation from 5.5 MB to 5 MiB.
This commit is contained in:
parent
0e163d2ced
commit
8c663fd60e
38 changed files with 76 additions and 76 deletions
|
@ -62,7 +62,7 @@ class BaseTest(unittest.TestCase):
|
|||
BAD_DATA = b'this is not a valid bzip2 file'
|
||||
|
||||
# Some tests need more than one block of uncompressed data. Since one block
|
||||
# is at least 100 kB, we gather some data dynamically and compress it.
|
||||
# is at least 100,000 bytes, we gather some data dynamically and compress it.
|
||||
# Note that this assumes that compression works correctly, so we cannot
|
||||
# simply use the bigger test data for all tests.
|
||||
test_size = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue