This file is indexed.

/usr/share/pyshared/Unipath-0.2.1.egg-info is in python-unipath 0.2.1+dfsg-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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Metadata-Version: 1.0
Name: Unipath
Version: 0.2.1
Summary: Object-oriented alternative to os/os.path/shutil
Home-page: http://sluggo.scrapping.cc/python/unipath/
Author: Mike Orr
Author-email: sluggoster@gmail.com
License: Python
Download-URL: http://sluggo.scrapping.cc/python/unipath/Unipath-0.2.1.tar.gz
Description: Unipath is an object-oriented approach to file/pathname 
        manipulations and filesystem calls, an alternative to ``os.path.*``,
        ``shutil.*``, and some ``os.*`` functions.  It's based on
        Orendorff's path.py but has been refactored to make application code
        more concise, by focusing on what the programmer wants to do rather
        than on low-level operations exactly like the C library.  For
        instance:
        
        - ``p.mkdir()`` succeeds silently if the directory already exists, and
        - ``p.mkdir(True)`` creates intermediate directories a la
          ``os.makedirs``.   
        - ``p.rmtree(parents=True)`` combines ``shutil.rmtree``,
          ``os.path.isdir``, ``os.remove``, and ``os.removedirs``, to
          recursively remove whatever it is if it exists.  
        -  ``p.read_file("rb")`` returns the file's contents in binary mode.  
        - ``p.needs_update([other_path1, ...])`` returns True if p doesn't
          exist or has an older timestamp than any of the others.
        - extra convenience functions in the ``unipath.tools`` module.
          ``dict2dir`` creates a directory hierarchy described by a ``dict``.
          ``dump_path`` displays an ASCII tree of a directory hierarchy.
        
        Unipath has a ``Path`` class for abstract pathname manipulations
        (``p.parent``, ``p.expand()``), and a ``FSPath`` subclass for
        filesystem calls (all the ones above).  You can do "from unipath
        import FSPath as Path" and forget about the distinction, or use the
        ``Path`` class and be confident you'll never access the filesystem.
        The ``Path`` class is also being proposed as an addition to the
        standard libary (``os.path.Path``).  Compare::
        
            # Reference a file that's two directories above another file.
            p = os.path.join(os.path.dirname(os.path.dirname("/A/B/C")), "file.txt")
            p = Path("A/B/C").parent.parent.child("file.txt")
            p = Path("A/B/C").ancestor(2).child("file.txt")
            p0 = Path("/A/B/C");  p = Path(p0.parent.parent, "file.txt")
        
            # Change the extension of a path.
            p = os.path.splitext("image.jpg")[0] + ".png"
            p = Path("image.jpg").name + ".png"
        
        Documentation is in the README and on the
        `website <http://sluggo.scrapping.cc/python/unipath/>`__.
        
        Unipath is in early alpha release so the API may change as it get
        greater use in the "real world".  Unipath comes with extensive
        unittests, and has been tested on Python 2.5 and 2.4.4 on Linux.
        Feedback and Windows/Macintosh testers are encouraged.
        
Keywords: os.path filename pathspec path files directories filesystem
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities