This file is indexed.

/usr/lib/python2.7/dist-packages/bzrlib/doc/api/transport.txt is in python-bzrlib 2.7.0-2ubuntu3.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
The Transport API in bzrlib provides URL based access to network resources.

   >>> import os
   >>> import sys
   >>> from bzrlib.osutils import getcwd, dirname
   >>> from bzrlib.urlutils import local_path_from_url
   >>> import bzrlib.transport as transport
   >>> if sys.platform == 'win32':
   ...     root = transport.get_transport_from_url('file:///C:/')
   ... else:
   ...     root = transport.get_transport_from_url('file:///')
   >>>

Each Transport instance represents a single logical directory.

   >>> dir = transport.get_transport_from_path(".")
   >>> local_path_from_url(dir.base) == getcwd() + '/'
   True

You can change directories via the clone method:

   >>> parent = dir.clone('..')
   >>> local_path_from_url(parent.base) == (dirname(getcwd()).rstrip('/') + '/')
   True