This file is indexed.

/usr/lib/python2.7/dist-packages/setproctitle-1.1.10.egg-info is in python-setproctitle 1.1.10-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
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
Metadata-Version: 1.1
Name: setproctitle
Version: 1.1.10
Summary: A Python module to customize the process title
Home-page: https://github.com/dvarrazzo/py-setproctitle
Author: Daniele Varrazzo
Author-email: daniele.varrazzo@gmail.com
License: BSD
Download-URL: http://pypi.python.org/pypi/setproctitle/
Description: A Python module to customize the process title
        ==============================================
        
        :author: Daniele Varrazzo
        
        The ``setproctitle`` module allows a process to change its title (as displayed
        by system tools such as ``ps`` and ``top``).
        
        Changing the title is mostly useful in multi-process systems, for example
        when a master process is forked: changing the children's title allows to
        identify the task each process is busy with.  The technique is used by
        PostgreSQL_ and the `OpenSSH Server`_ for example.
        
        The procedure is hardly portable across different systems.  PostgreSQL provides
        a good `multi-platform implementation`__:  this module is a Python wrapper
        around PostgreSQL code.
        
        - `Homepage <https://github.com/dvarrazzo/py-setproctitle>`__
        - `Download <http://pypi.python.org/pypi/setproctitle/>`__
        - `Bug tracker <https://github.com/dvarrazzo/py-setproctitle/issues>`__
        
        
        .. _PostgreSQL: http://www.postgresql.org
        .. _OpenSSH Server: http://www.openssh.com/
        .. __: http://doxygen.postgresql.org/ps__status_8c_source.html
        
        
        Installation
        ------------
        
        ``setproctitle`` is a C extension: in order to build it you will need a C
        compiler and the Python development support (the ``python-dev`` package in
        most Linux distributions). No further external dependencies are required.
        
        You can use ``pip`` to install the module::
        
            pip install setproctitle
        
        You can use ``pip -t`` or ``virtualenv`` for local installations, ``sudo pip``
        for a system-wide one... the usual stuff. Read pip_ or virtualenv_ docs for
        all the details.
        
        .. _pip: https://pip.readthedocs.org/
        .. _virtualenv: https://virtualenv.readthedocs.org/
        
        
        Python 3 support
        ~~~~~~~~~~~~~~~~
        
        As of version 1.1 the module works with Python 3. Just use
        ``pip``/``virtualenv`` for Python 3.
        
        In order to build from the source package and test the module under Python 3,
        the ``Makefile`` contains some helper targets.
        
        
        Usage
        -----
        
        The ``setproctitle`` module exports the following functions:
        
        ``setproctitle(title)``
            Set *title* as the title for the current process.
        
        ``getproctitle()``
            Return the current process title.
        
        
        Environment variables
        ~~~~~~~~~~~~~~~~~~~~~
        
        A few environment variables can be used to customize the module behavior:
        
        ``SPT_NOENV``
            Avoid clobbering ``/proc/PID/environ``.
        
            On many platforms, setting the process title will clobber the
            ``environ`` memory area. ``os.environ`` will work as expected from within
            the Python process, but the content of the file ``/proc/PID/environ`` will
            be overwritten.  If you require this file not to be broken you can set the
            ``SPT_NOENV`` environment variable to any non-empty value: in this case
            the maximum length for the title will be limited to the length of the
            command line.
        
        ``SPT_DEBUG``
            Print debug information on ``stderr``.
        
            If the module doesn't work as expected you can set this variable to a
            non-empty value to generate information useful for debugging.  Note that
            the most useful information is printed when the module is imported, not
            when the functions are called.
        
        
        Module status
        -------------
        
        The module can be currently compiled and effectively used on the following
        platforms:
        
        - GNU/Linux
        - BSD
        - MacOS X
        - Windows
        
        Note that on Windows there is no way to change the process string:
        what the module does is to create a *Named Object* whose value can be read
        using a tool such as `Process Explorer`_ (contribution of a more useful tool
        to be used together with ``setproctitle`` would be well accepted).
        
        The module can probably work on HP-UX, but I haven't found any to test with.
        It is unlikely that it can work on Solaris instead.
        
        .. _Process Explorer: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
        
        
        Other known implementations and discussions
        -------------------------------------------
        
        - `procname`_: a module exposing the same functionality, but less portable
          and not well packaged.
        - `Issue 5672`_: where the introduction of such functionality into the stdlib
          is being discussed.
        
        .. _procname: http://code.google.com/p/procname/
        .. _Issue 5672: http://bugs.python.org/issue5672
        
        Releases history
        ----------------
        
        Version 1.1.10
        ~~~~~~~~~~~~~~
        
        - Fixed building with certain ``prctl.h`` implementations (issue #44).
        - Use ``setuptools`` if available (issue #48).
        
        
        Version 1.1.9
        ~~~~~~~~~~~~~
        
        - Fixed build on VC (issues #20, #33).
        - Added ``MANIFEST.in`` to the source distribution to help with RPM building
          (issue #30).
        
        
        Version 1.1.8
        ~~~~~~~~~~~~~
        
        - Added support for Python "diehard" 2.4 (pull request #3).
        - Fixed build on Mac OS X 10.9 Maverick (issue #27).
        
        
        Version 1.1.7
        ~~~~~~~~~~~~~
        
        - Added PyPy support, courtesy of Ozan Turksever - http://www.logsign.net
          (pull request #2).
        
        
        Version 1.1.6
        ~~~~~~~~~~~~~
        
        - The module can be compiled again on Windows (issue #21).
        
        
        Version 1.1.5
        ~~~~~~~~~~~~~
        
        - No module bug, but a packaging issue: files ``README`` and ``HISTORY``
          added back into the distribution.
        
        
        Version 1.1.4
        ~~~~~~~~~~~~~
        
        - The module works correctly in embedded Python.
        - ``setproctitle()`` accepts a keyword argument.
        - Debug output support always compiled in: the variable ``SPT_DEBUG`` can be
          used to emit debug log.
        
        
        Version 1.1.3
        ~~~~~~~~~~~~~
        
        - Don't clobber environ if the variable ``SPT_NOENV`` is set (issue #16).
        
        
        Version 1.1.2
        ~~~~~~~~~~~~~
        
        - Find the setproctitle include file on OpenBSD (issue #11).
        - Skip test with unicode if the file system encoding wouldn't make it pass
          (issue #13).
        
        
        Version 1.1.1
        ~~~~~~~~~~~~~
        
        - Fixed segfault when the module is imported under mod_wsgi (issue #9).
        
        
        Version 1.1
        ~~~~~~~~~~~
        
        - The module works correctly with Python 3.
        
        
        Version 1.0.1
        ~~~~~~~~~~~~~
        
        - ``setproctitle()`` works even when Python messes up with argv, e.g. when run
          with the -m option (issue #8).
        
        
        Version 1.0
        ~~~~~~~~~~~
        
        No major change since the previous version.  The module has been heavily used
        in production environment without any problem reported, so it's time to declare
        it stable.
        
        
        Version 0.4
        ~~~~~~~~~~~
        
        - Module works on BSD (tested on FreeBSD 7.2).
        
        - Module works on Windows. Many thanks to `Develer`_ for providing a neat `GCC
          package for Windows with Python integration`__ that made the Windows porting
          painless.
        
          .. _Develer: http://www.develer.com/
          .. __: http://www.develer.com/oss/GccWinBinaries
        
        
        Version 0.3
        ~~~~~~~~~~~
        
        - Module works on Mac OS X 10.2. Reported working on OS X 10.6 too.
        
        
        Version 0.2
        ~~~~~~~~~~~
        
        - Added ``prctl()`` call on Linux >= 2.6.9 to update ``/proc/self/status``.
        
        
        Version 0.1
        ~~~~~~~~~~~
        
        - Initial public release.
        
Platform: GNU/Linux
Platform: BSD
Platform: MacOS X
Platform: Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Software Development