Skip to content

Commit 4073e3d

Browse files
committed
Drop excess #
Signed-off-by: Josh Soref <[email protected]>
1 parent 06f0e23 commit 4073e3d

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

bottle.py

+13-13
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def _cli_patch(cli_args): # pragma: no coverage
6565
_cli_patch(sys.argv)
6666

6767
###############################################################################
68-
# Imports and Helpers used everywhere else #####################################
68+
# Imports and Helpers used everywhere else ####################################
6969
###############################################################################
7070

7171
import base64, calendar, email.utils, functools, hmac, itertools, \
@@ -226,7 +226,7 @@ class BottleException(Exception):
226226
pass
227227

228228
###############################################################################
229-
# Routing ######################################################################
229+
# Routing #####################################################################
230230
###############################################################################
231231

232232

@@ -564,7 +564,7 @@ def __repr__(self):
564564
return '<%s %s -> %s:%s>' % (self.method, self.rule, cb.__module__, cb.__name__)
565565

566566
###############################################################################
567-
# Application Object ###########################################################
567+
# Application Object ##########################################################
568568
###############################################################################
569569

570570

@@ -1089,7 +1089,7 @@ def __setattr__(self, name, value):
10891089
object.__setattr__(self, name, value)
10901090

10911091
###############################################################################
1092-
# HTTP and WSGI Tools ##########################################################
1092+
# HTTP and WSGI Tools #########################################################
10931093
###############################################################################
10941094

10951095

@@ -1928,7 +1928,7 @@ def __init__(self,
19281928
super(HTTPError, self).__init__(body, status, **more_headers)
19291929

19301930
###############################################################################
1931-
# Plugins ######################################################################
1931+
# Plugins #####################################################################
19321932
###############################################################################
19331933

19341934

@@ -2044,7 +2044,7 @@ def load_module(self, fullname):
20442044
return module
20452045

20462046
###############################################################################
2047-
# Common Utilities #############################################################
2047+
# Common Utilities ############################################################
20482048
###############################################################################
20492049

20502050

@@ -2684,7 +2684,7 @@ def save(self, destination, overwrite=False, chunk_size=2 ** 16):
26842684
self._copy_file(destination, chunk_size)
26852685

26862686
###############################################################################
2687-
# Application Helper ###########################################################
2687+
# Application Helper ##########################################################
26882688
###############################################################################
26892689

26902690

@@ -2826,7 +2826,7 @@ def static_file(filename, root,
28262826
return HTTPResponse(body, **headers)
28272827

28282828
###############################################################################
2829-
# HTTP Utilities and MISC (TODO) ###############################################
2829+
# HTTP Utilities and MISC (TODO) ##############################################
28302830
###############################################################################
28312831

28322832

@@ -3092,7 +3092,7 @@ def wrapper(*a, **ka):
30923092

30933093

30943094
###############################################################################
3095-
# Multipart Handling ###########################################################
3095+
# Multipart Handling ##########################################################
30963096
###############################################################################
30973097
# cgi.FieldStorage was deprecated in Python 3.11 and removed in 3.13
30983098
# This implementation is based on https://github.com/defnull/multipart/
@@ -3339,7 +3339,7 @@ def close(self):
33393339
self.file = False
33403340

33413341
###############################################################################
3342-
# Server Adapter ###############################################################
3342+
# Server Adapter ##############################################################
33433343
###############################################################################
33443344

33453345
# Before you edit or add a server adapter, please read:
@@ -3726,7 +3726,7 @@ def run(self, handler):
37263726
}
37273727

37283728
###############################################################################
3729-
# Application Control ##########################################################
3729+
# Application Control #########################################################
37303730
###############################################################################
37313731

37323732

@@ -3919,7 +3919,7 @@ def __exit__(self, exc_type, *_):
39193919
return exc_type is not None and issubclass(exc_type, KeyboardInterrupt)
39203920

39213921
###############################################################################
3922-
# Template Adapters ############################################################
3922+
# Template Adapters ###########################################################
39233923
###############################################################################
39243924

39253925

@@ -4419,7 +4419,7 @@ def wrapper(*args, **kwargs):
44194419
jinja2_view = functools.partial(view, template_adapter=Jinja2Template)
44204420

44214421
###############################################################################
4422-
# Constants and Globals ########################################################
4422+
# Constants and Globals #######################################################
44234423
###############################################################################
44244424

44254425
TEMPLATE_PATH = ['./', './views/']

0 commit comments

Comments
 (0)