From f2d63ad7f7341533795b51811bfed86cf9b05606 Mon Sep 17 00:00:00 2001 From: Unrud Date: Tue, 4 Sep 2018 03:33:49 +0200 Subject: [PATCH] Remove duplicate docstring --- radicale/app/get.py | 7 ------- radicale/app/head.py | 7 ------- radicale/app/mkcalendar.py | 7 ------- radicale/app/mkcol.py | 7 ------- radicale/app/move.py | 7 ------- radicale/app/options.py | 7 ------- radicale/app/propfind.py | 7 ------- radicale/app/proppatch.py | 7 ------- radicale/app/put.py | 7 ------- radicale/app/report.py | 7 ------- 10 files changed, 70 deletions(-) diff --git a/radicale/app/get.py b/radicale/app/get.py index feab880..7b58a8b 100644 --- a/radicale/app/get.py +++ b/radicale/app/get.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - import posixpath from http import client from urllib.parse import quote diff --git a/radicale/app/head.py b/radicale/app/head.py index 7a70225..9e8b590 100644 --- a/radicale/app/head.py +++ b/radicale/app/head.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - class ApplicationHeadMixin: def do_HEAD(self, environ, base_prefix, path, user): diff --git a/radicale/app/mkcalendar.py b/radicale/app/mkcalendar.py index 15ba2a1..42de870 100644 --- a/radicale/app/mkcalendar.py +++ b/radicale/app/mkcalendar.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - import posixpath import socket from http import client diff --git a/radicale/app/mkcol.py b/radicale/app/mkcol.py index ccc5deb..43e3945 100644 --- a/radicale/app/mkcol.py +++ b/radicale/app/mkcol.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - import posixpath import socket from http import client diff --git a/radicale/app/move.py b/radicale/app/move.py index 79fe464..79155b5 100644 --- a/radicale/app/move.py +++ b/radicale/app/move.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - import posixpath from http import client from urllib.parse import urlparse diff --git a/radicale/app/options.py b/radicale/app/options.py index 60af1d5..0238ca5 100644 --- a/radicale/app/options.py +++ b/radicale/app/options.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - from http import client from radicale import httputils diff --git a/radicale/app/propfind.py b/radicale/app/propfind.py index 5614ed6..f7bec9d 100644 --- a/radicale/app/propfind.py +++ b/radicale/app/propfind.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - import itertools import posixpath import socket diff --git a/radicale/app/proppatch.py b/radicale/app/proppatch.py index a8b1918..cfd282e 100644 --- a/radicale/app/proppatch.py +++ b/radicale/app/proppatch.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - import socket from http import client from xml.etree import ElementTree as ET diff --git a/radicale/app/put.py b/radicale/app/put.py index 5cb9e6a..2938a25 100644 --- a/radicale/app/put.py +++ b/radicale/app/put.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - import itertools import posixpath import socket diff --git a/radicale/app/report.py b/radicale/app/report.py index 8ed91cc..b6f6745 100644 --- a/radicale/app/report.py +++ b/radicale/app/report.py @@ -17,13 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . -""" -Radicale WSGI application. - -Can be used with an external WSGI server or the built-in server. - -""" - import contextlib import posixpath import socket