summaryrefslogtreecommitdiff
path: root/Tools/iobench
Commit message (Collapse)AuthorAgeFilesLines
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-081-3/+3
| | | | | | | | | | | 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.
* Issue #15204: Deprecated the 'U' mode in file-like objects.Serhiy Storchaka2013-11-231-1/+3
|
* Some cleanup in the Tools directory.Florent Xicluna2012-07-071-2/+0
|
* iobench.py: add more info in the headerVictor Stinner2011-12-181-4/+15
| | | | Write the Python version, Unicode implementation and the platform.
* Fix a missing encoding argument when opening a text file in some of ↵Antoine Pitrou2011-10-081-1/+1
| | | | | | iobench's subtests. (found by Georg)
* Add an option to choose the IO module under test (allows to benchAntoine Pitrou2010-09-061-0/+6
| | | | e.g. the pure Python implementation in _pyio).
* Merged revisions 77599-77601 via svnmerge fromAntoine Pitrou2010-01-181-0/+539
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77599 | antoine.pitrou | 2010-01-18 22:04:00 +0100 (lun., 18 janv. 2010) | 3 lines Add iobench to the Tools directory (see December python-dev discussion) ........ r77600 | antoine.pitrou | 2010-01-18 22:10:31 +0100 (lun., 18 janv. 2010) | 3 lines Add ccbench to the Tools directory ........ r77601 | antoine.pitrou | 2010-01-18 22:15:21 +0100 (lun., 18 janv. 2010) | 3 lines Add a NEWS entry for r77599 and r77600. ........