Searched defs:rjust (Results 1 - 6 of 6) sorted by relevance

/external/python/cpython2/Lib/
H A Dstringold.py278 def rjust(s, width): function
279 """rjust(s, width) -> string
H A DUserString.py113 def rjust(self, width, *args): member in class:UserString
114 return self.__class__(self.data.rjust(width, *args))
H A Dstring.py436 def rjust(s, width, *args): function
437 """rjust(s, width[, fillchar]) -> string
444 return s.rjust(width, *args)
/external/python/cpython2/Demo/tkinter/guido/
H A Dss1.py16 def rjust(x, n): function
17 return x.rjust(n)
18 align2action = {LEFT: ljust, CENTER: center, RIGHT: rjust}
/external/python/cpython3/Tools/demo/
H A Dss1.py19 def rjust(x, n): function
20 return x.rjust(n)
21 align2action = {LEFT: ljust, CENTER: center, RIGHT: rjust}
/external/python/cpython3/Lib/collections/
H A D__init__.py1227 def rjust(self, width, *args): member in class:UserString
1228 return self.__class__(self.data.rjust(width, *args))

Completed in 711 milliseconds