OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textin
(Results
1 - 2
of
2
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_textwrap.py
20
def show(self,
textin
):
21
if isinstance(
textin
, list):
23
for i in range(len(
textin
)):
24
result.append(" %d: %r" % (i,
textin
[i]))
26
elif isinstance(
textin
, basestring):
27
result = " %s\n" % repr(
textin
)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_textwrap.py
20
def show(self,
textin
):
21
if isinstance(
textin
, list):
23
for i in range(len(
textin
)):
24
result.append(" %d: %r" % (i,
textin
[i]))
26
elif isinstance(
textin
, basestring):
27
result = " %s\n" % repr(
textin
)
Completed in 956 milliseconds