/usr/lib/python2.7/dist-packages/deltarpm.py is in python-deltarpm 3.6+dfsg-1build2.
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 | # Copyright 2009 Red Hat, Inc.
#
# This program is licensed under the BSD license, read LICENSE.BSD
# for further information.
import _deltarpm
import sys
def readDeltaRPM(file):
result = _deltarpm.read(file)
return result
|