/usr/share/pyshared/axiom/test/oldcirc.py is in python-axiom 0.6.0-3.
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 | # -*- test-case-name: axiom.test.test_upgrading.DeletionTest.testCircular -*-
from axiom.item import Item
from axiom.attributes import reference, integer
class A(Item):
typeName = 'test_circular_a'
b = reference()
class B(Item):
typeName = 'test_circular_b'
a = reference()
n = integer()
|