/external/python/cpython2/Lib/ |
D | formatter.py | 84 self.softspace = 0 # Should a space be inserted 99 self.softspace = 0 106 self.softspace = 0 113 self.have_label = self.para_end = self.softspace = self.parskip = 0 125 self.softspace = self.parskip = 0 184 elif prespace or self.softspace: 187 self.softspace = 1 194 self.softspace = postspace 199 if self.softspace: 202 self.nospace = self.para_end = self.softspace = \ [all …]
|
D | code.py | 15 def softspace(file, newvalue): function 18 oldvalue = file.softspace 22 file.softspace = newvalue 109 if softspace(sys.stdout, 0):
|
D | tempfile.py | 615 def softspace(self): member in SpooledTemporaryFile 616 return self._file.softspace
|
D | StringIO.py | 63 self.softspace = 0
|
D | socket.py | 256 self.softspace = False
|
D | doctest.py | 260 del self.softspace 266 del self.softspace
|
/external/python/cpython3/Lib/ |
D | formatter.py | 87 self.softspace = 0 # Should a space be inserted 102 self.softspace = 0 109 self.softspace = 0 116 self.have_label = self.para_end = self.softspace = self.parskip = 0 128 self.softspace = self.parskip = 0 187 elif prespace or self.softspace: 190 self.softspace = 1 197 self.softspace = postspace 202 if self.softspace: 205 self.nospace = self.para_end = self.softspace = \ [all …]
|
D | tempfile.py | 748 def softspace(self): member in SpooledTemporaryFile 749 return self._file.softspace
|
/external/python/cpython2/Tools/freeze/ |
D | bkfile.py | 28 self.softspace = self.__file.softspace
|
/external/python/cpython2/Tools/framer/ |
D | example.py | 113 softspace = member() variable in cStringIO.OutputType
|
/external/python/cpython2/Doc/c-api/ |
D | file.rst | 155 .. index:: single: softspace (file attribute) 158 :attr:`softspace` attribute of *p* to *newflag* and return the previous value. 160 object is supported (thought its only interesting if the :attr:`softspace`
|
/external/python/cpython2/Lib/idlelib/ |
D | run.py | 222 if sys.stdout.softspace: 223 sys.stdout.softspace = 0
|
D | PyShell.py | 1291 sys.stdout.softspace = 0 1323 self.softspace = 0
|
/external/python/cpython2/Modules/ |
D | cStringIO.c | 60 int softspace; member 532 {"softspace", T_INT, offsetof(Oobject, softspace), 0, 590 self->softspace = 0; in newOobject()
|
/external/python/cpython2/Lib/test/ |
D | test_file2k.py | 45 softspace = f.softspace 52 f.softspace = softspace # merely shouldn't blow up
|
D | test_py3kwarn.py | 205 self.assertWarning(f.softspace, w, expected) 207 f.softspace = 0
|
/external/python/cpython2/Lib/bsddb/ |
D | dbrecio.py | 42 self.softspace = 0
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6a2.rst | 96 add Py3k warning for file.softspace.
|
/external/autotest/client/common_lib/ |
D | pexpect.py | 409 self.softspace = False # File-like object.
|
/external/python/six/documentation/ |
D | index.rst | 291 having softspace support. If you don't know what that is, you're probably
|
/external/python/cpython2/Doc/library/ |
D | stdtypes.rst | 2700 .. attribute:: file.softspace 2704 to simulate a file object should also have a writable :attr:`softspace` 2708 :attr:`softspace` attribute.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.0.rst | 128 * The :func:`print` function doesn't support the "softspace" feature of
|
/external/python/cpython3/Misc/ |
D | HISTORY | 17230 'softspace' attribute of files is now gone (since print() doesn't 21370 - The softspace attribute of file objects became read-only by oversight.
|
/external/python/cpython2/Misc/ |
D | HISTORY | 3986 - The softspace attribute of file objects became read-only by oversight.
|