コード例 #1
0
ファイル: __init__.py プロジェクト: kelvinkipsang/python_proj
 def rpartition(self, sep):
     return tuple(
         map(self.__class__,
             text_type.rpartition(self, self.escape(sep))))
コード例 #2
0
ファイル: __init__.py プロジェクト: mredar/markupsafe
 def rpartition(self, sep):
     return tuple(map(self.__class__,
                      text_type.rpartition(self, self.escape(sep))))