Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1525)

Unified Diff: venv/Lib/site-packages/django/core/checks/__init__.py

Issue 554060043: testMe
Patch Set: Created 2 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: venv/Lib/site-packages/django/core/checks/__init__.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/venv/Lib/site-packages/django/core/checks/__init__.py
@@ -0,0 +1,28 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from .messages import (
+ CRITICAL, DEBUG, ERROR, INFO, WARNING, CheckMessage, Critical, Debug,
+ Error, Info, Warning,
+)
+from .registry import Tags, register, run_checks, tag_exists
+
+# Import these to force registration of checks
+import django.core.checks.caches # NOQA isort:skip
+import django.core.checks.compatibility.django_1_8_0 # NOQA isort:skip
+import django.core.checks.compatibility.django_1_10 # NOQA isort:skip
+import django.core.checks.database # NOQA isort:skip
+import django.core.checks.model_checks # NOQA isort:skip
+import django.core.checks.security.base # NOQA isort:skip
+import django.core.checks.security.csrf # NOQA isort:skip
+import django.core.checks.security.sessions # NOQA isort:skip
+import django.core.checks.templates # NOQA isort:skip
+import django.core.checks.urls # NOQA isort:skip
+
+
+__all__ = [
+ 'CheckMessage',
+ 'Debug', 'Info', 'Warning', 'Error', 'Critical',
+ 'DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL',
+ 'register', 'run_checks', 'tag_exists', 'Tags',
+]
« no previous file with comments | « venv/Lib/site-packages/django/core/cache/utils.py ('k') | venv/Lib/site-packages/django/core/checks/caches.py » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b