/usr/share/pyshared/axiom/test/oldapp.py is in python-axiom 0.7.1-2.
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 | from axiom.item import Item
from axiom.attributes import text, integer, reference
class Player(Item):
typeName = 'test_app_player'
schemaVersion = 1
name = text()
sword = reference()
class Sword(Item):
typeName = 'test_app_sword'
schemaVersion = 1
name = text()
hurtfulness = integer()
|