Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/sentry/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry
~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import

import os
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/__main__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry
~~~~~~

:copyright: (c) 2015 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import

from .runner import main
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/api/paginator.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry.api.paginator
~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import

import bisect
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/app.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry.app
~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import

from threading import local
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/attachments/base.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.attachments.base
~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

import zlib
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/attachments/default.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.attachments.default
~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

from sentry.cache import default_cache
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/attachments/redis.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.attachments.redis
~~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

import logging
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/buffer/base.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry.buffer.base
~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import

import logging
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/buffer/inprocess.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry.buffer.inprocess
~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2015 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import

from sentry.buffer import Buffer
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/buffer/redis.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry.buffer.redis
~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import

import six
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/cache/base.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.cache.base
~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

from django.conf import settings
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/cache/django.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.cache.django
~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

from django.core.cache import cache
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/cache/redis.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.cache.redis
~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

from sentry.utils import json
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/conf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
"""
sentry.conf
~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import
6 changes: 0 additions & 6 deletions src/sentry/conf/server.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
"""
sentry.conf.server
~~~~~~~~~~~~~~~~~~

These settings act as the default (base) settings for the Sentry-provided web-server

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import

Expand Down
6 changes: 0 additions & 6 deletions src/sentry/constants.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
"""
sentry.constants
~~~~~~~~~~~~~~~~

These settings act as the default (base) settings for the Sentry-provided
web-server

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import, print_function

Expand Down
7 changes: 0 additions & 7 deletions src/sentry/coreapi.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry.coreapi
~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
# TODO: We should make the API a class, and UDP/HTTP just inherit from it
# This will make it so we can more easily control logging with various
# metadata (rather than generic log messages which aren't useful).
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1 @@
"""
sentry.db
~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import
7 changes: 0 additions & 7 deletions src/sentry/db/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry.db.exceptions
~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import


Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models
~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

from .base import * # NOQA
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/base.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models
~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

from copy import copy
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/fields/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models.fields
~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

from .array import * # NOQA
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/fields/bounded.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models.fields.bounded
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

from django.conf import settings
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/fields/citext.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models.fields.citext
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import, print_function

import six
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/fields/foreignkey.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models.fields.foreignkey
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

from django.conf import settings
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/fields/gzippeddict.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models.fields.gzippeddict
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import, print_function

import logging
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/fields/node.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models.fields.node
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import, print_function

from base64 import b64encode
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/manager.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models.manager
~~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import, print_function

import logging
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/query.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.models.query
~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

import itertools
Expand Down
8 changes: 0 additions & 8 deletions src/sentry/db/models/utils.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.db.utils
~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

import operator
Expand Down
6 changes: 0 additions & 6 deletions src/sentry/event_manager.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
"""
sentry.event_manager
~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import, print_function

import time
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/http.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
"""
sentry.utils.http
~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import

import six
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/interfaces/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
"""
sentry.interfaces
~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import
8 changes: 0 additions & 8 deletions src/sentry/interfaces/breadcrumbs.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
"""
sentry.interfaces.breadcrumbs
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2010-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import absolute_import

__all__ = ('Breadcrumbs', )
Expand Down
Loading