This file is indexed.

/usr/share/pyshared/celery/task/schedules.py is in python-celery 2.4.6-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
# -*- coding: utf-8 -*-
from __future__ import absolute_import

import warnings
from ..schedules import schedule, crontab_parser, crontab  # noqa
from ..exceptions import CDeprecationWarning

warnings.warn(CDeprecationWarning(
    "celery.task.schedules is deprecated and renamed to celery.schedules"))