/usr/share/pyshared/plasTeX/Packages/wrapfig.py is in python-plastex 0.9.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from plasTeX import Environment
class wrapfigure(Environment):
args = '[ lines ] place:str [ overhang ] width'
float = 'left'
def invoke(self, tex):
res = Environment.invoke(self, tex)
if self.macroMode == self.MODE_BEGIN:
a = self.attributes['place'].lower()
if a in ['r','o']:
self.float = 'right'
return res
class wraptable(wrapfigure):
pass
|