summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-02 18:47:42 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:10 -0400
commitb4002a214399d8619965f40e153ca3f7dcb20904 (patch)
tree23379028aeb91cb892a62248edb1abaad1f91f46 /django
parent6eed9ae747a0178de817da2e56bd09e73bee84ad (diff)
Refs #22835 -- Removed NoArgsCommand per deprecation timeline.
Diffstat (limited to 'django')
-rw-r--r--django/core/management/base.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py
index 10d1b728fe..6bdfe31ac5 100644
--- a/django/core/management/base.py
+++ b/django/core/management/base.py
@@ -7,14 +7,12 @@ from __future__ import unicode_literals
import os
import sys
-import warnings
from argparse import ArgumentParser
import django
from django.core import checks
from django.core.management.color import color_style, no_style
from django.db import connections
-from django.utils.deprecation import RemovedInDjango110Warning
from django.utils.encoding import force_str
@@ -500,35 +498,3 @@ class LabelCommand(BaseCommand):
string as given on the command line.
"""
raise NotImplementedError('subclasses of LabelCommand must provide a handle_label() method')
-
-
-class NoArgsCommand(BaseCommand):
- """
- A command which takes no arguments on the command line.
-
- Rather than implementing ``handle()``, subclasses must implement
- ``handle_noargs()``; ``handle()`` itself is overridden to ensure
- no arguments are passed to the command.
-
- Attempting to pass arguments will raise ``CommandError``.
- """
- args = ''
-
- def __init__(self):
- warnings.warn(
- "NoArgsCommand class is deprecated and will be removed in Django 1.10. "
- "Use BaseCommand instead, which takes no arguments by default.",
- RemovedInDjango110Warning
- )
- super(NoArgsCommand, self).__init__()
-
- def handle(self, *args, **options):
- if args:
- raise CommandError("Command doesn't accept any arguments")
- return self.handle_noargs(**options)
-
- def handle_noargs(self, **options):
- """
- Perform this command's actions.
- """
- raise NotImplementedError('subclasses of NoArgsCommand must provide a handle_noargs() method')