Python io.StringIO.truncate() Examples
The following are 5
code examples of io.StringIO.truncate().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
io.StringIO
, or try the search function
.
Example #1
Source File: doctest.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def truncate(self, size=None): self.seek(size) StringIO.truncate(self) # Worst-case linear-time ellipsis matching.
Example #2
Source File: doctest.py From Imogen with MIT License | 5 votes |
def truncate(self, size=None): self.seek(size) StringIO.truncate(self) # Worst-case linear-time ellipsis matching.
Example #3
Source File: doctest.py From ironpython3 with Apache License 2.0 | 5 votes |
def truncate(self, size=None): self.seek(size) StringIO.truncate(self) # Worst-case linear-time ellipsis matching.
Example #4
Source File: doctest.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def truncate(self, size=None): self.seek(size) StringIO.truncate(self) # Worst-case linear-time ellipsis matching.
Example #5
Source File: doctest.py From android_universal with MIT License | 5 votes |
def truncate(self, size=None): self.seek(size) StringIO.truncate(self) # Worst-case linear-time ellipsis matching.