Home
last modified time | relevance | path

Searched refs:softspace (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython2/Lib/
Dformatter.py84 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 …]
Dcode.py15 def softspace(file, newvalue): function
18 oldvalue = file.softspace
22 file.softspace = newvalue
109 if softspace(sys.stdout, 0):
Dtempfile.py615 def softspace(self): member in SpooledTemporaryFile
616 return self._file.softspace
DStringIO.py63 self.softspace = 0
Dsocket.py256 self.softspace = False
Ddoctest.py260 del self.softspace
266 del self.softspace
/external/python/cpython3/Lib/
Dformatter.py87 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 …]
Dtempfile.py748 def softspace(self): member in SpooledTemporaryFile
749 return self._file.softspace
/external/python/cpython2/Tools/freeze/
Dbkfile.py28 self.softspace = self.__file.softspace
/external/python/cpython2/Tools/framer/
Dexample.py113 softspace = member() variable in cStringIO.OutputType
/external/python/cpython2/Doc/c-api/
Dfile.rst155 .. 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/
Drun.py222 if sys.stdout.softspace:
223 sys.stdout.softspace = 0
DPyShell.py1291 sys.stdout.softspace = 0
1323 self.softspace = 0
/external/python/cpython2/Modules/
DcStringIO.c60 int softspace; member
532 {"softspace", T_INT, offsetof(Oobject, softspace), 0,
590 self->softspace = 0; in newOobject()
/external/python/cpython2/Lib/test/
Dtest_file2k.py45 softspace = f.softspace
52 f.softspace = softspace # merely shouldn't blow up
Dtest_py3kwarn.py205 self.assertWarning(f.softspace, w, expected)
207 f.softspace = 0
/external/python/cpython2/Lib/bsddb/
Ddbrecio.py42 self.softspace = 0
/external/python/cpython2/Misc/NEWS.d/
D2.6a2.rst96 add Py3k warning for file.softspace.
/external/autotest/client/common_lib/
Dpexpect.py409 self.softspace = False # File-like object.
/external/python/six/documentation/
Dindex.rst291 having softspace support. If you don't know what that is, you're probably
/external/python/cpython2/Doc/library/
Dstdtypes.rst2700 .. 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/
D3.0.rst128 * The :func:`print` function doesn't support the "softspace" feature of
/external/python/cpython3/Misc/
DHISTORY17230 '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/
DHISTORY3986 - The softspace attribute of file objects became read-only by oversight.