/usr/share/pyshared/plasTeX/Packages/fancyhdr.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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | from plasTeX import Command
class fancypagestyle(Command):
args = 'style'
class fancyhead(Command):
args = '[ pos ] text'
class fancyfoot(fancyhead):
pass
class fancyhf(Command):
args = 'text'
class rightmark(Command):
pass
class leftmark(Command):
pass
class chaptermark(Command):
pass
class sectionmark(Command):
pass
class markboth(Command):
pass
class markright(Command):
pass
|