/usr/lib/python2.7/dist-packages/kid/pull.py is in python-kid 0.9.6-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 14 15 16 17 18 | # -*- coding: utf-8 -*-
"""Pull-style interface for ElementTree.
The kid.pull module has been deprecated in favor of kid.parser.
"""
__revision__ = "$Rev: 429 $"
__date__ = "$Date: 2006-10-26 15:24:33 +0200 (Do, 26 Okt 2006) $"
__author__ = "Ryan Tomayko (rtomayko@gmail.com)"
__copyright__ = "Copyright 2004-2005, Ryan Tomayko"
__license__ = "MIT <http://www.opensource.org/licenses/mit-license.php>"
import warnings
warnings.warn("kid.pull has been superseded by kid.parser", DeprecationWarning)
from kid.parser import *
|