summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_memoryio.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #20557: Use specific asserts in io tests.Serhiy Storchaka2015-08-021-2/+4
|
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-1/+2
|
* Issue #20498: Fixed io.StringIO tests for newline='\n'. Added new tests.Serhiy Storchaka2014-02-051-1/+36
|
* Issue #20435: Fix _pyio.StringIO.getvalue() to take into account newline ↵Antoine Pitrou2014-02-021-0/+9
| | | | translation settings.
* Backported a test for lone surrogates support in io.StringIO.Serhiy Storchaka2014-01-291-0/+10
|
* Issue #15841: The readable(), writable() and seekable() methods of io.BytesIOAntoine Pitrou2012-09-051-4/+3
| | | | | and io.StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura.
* Issue #15489: Add a __sizeof__ implementation for BytesIO objects.Antoine Pitrou2012-07-291-0/+11
| | | | Patch by Serhiy Storchaka.
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
|
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-13/+13
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* Merged revisions 86587 via svnmerge fromBenjamin Peterson2010-11-201-0/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86587 | benjamin.peterson | 2010-11-20 11:24:04 -0600 (Sat, 20 Nov 2010) | 1 line correct logic when pos is after the string #10467 ........
* Fix some py3k warnings in the standard library.Florent Xicluna2010-03-071-6/+2
|
* Remove unused imports in test modules.Georg Brandl2010-02-071-1/+0
|
* Issue #7870: Remove duplicate test methods. Reported by Georg Brandl.Antoine Pitrou2010-02-071-19/+0
|
* - Issue #6939: Fix file I/O objects in the `io` module to keep the originalAntoine Pitrou2010-01-311-2/+3
| | | | | | file position when calling `truncate()`. It would previously change the file position to the given argument, which goes against the tradition of ftruncate() and other truncation APIs. Patch by Pascal Chambon.
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-4/+4
|
* Add acceptance of long ints to test_memoryio.pyAntoine Pitrou2009-11-021-3/+11
| | | | (in preparation for fix of #7249 in 2.6)
* Manual py3k backport: [svn r74316] Issue #5449: Fix io.BytesIO to not accept ↵Antoine Pitrou2009-10-241-0/+5
| | | | arbitrary keywords
* Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and ↵Antoine Pitrou2009-10-241-9/+147
| | | | io.StringIO picklable.
* Manual py3k backport: [svn r74155] Issue #6242: Fix deallocator of ↵Antoine Pitrou2009-10-241-0/+7
| | | | io.StringIO and io.BytesIO
* Silence some py3k warnings claiming to affect _pyioAntoine Pitrou2009-10-141-2/+6
|
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-2/+2
|
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-121-35/+182
|
* Backport fast alternate io.BytesIO implementation.Alexandre Vassalotti2008-05-091-0/+416
Merged r62778, r62779, r62802, r62806, r62807, r62808, r62809, r62844, r62846, r62952, r62956.