diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-07-19 08:06:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-19 08:06:02 (GMT) |
commit | 1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356 (patch) | |
tree | df3bcce3fcd01a8230304dad9431cfab8ef406cb /Lib/http | |
parent | 420d94312824825a18fa1fd9a36773626a54d97a (diff) | |
download | cpython-1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356.zip cpython-1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356.tar.gz cpython-1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356.tar.bz2 |
gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907)
Diffstat (limited to 'Lib/http')
-rw-r--r-- | Lib/http/cookies.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py index 35ac2dc..351faf4 100644 --- a/Lib/http/cookies.py +++ b/Lib/http/cookies.py @@ -234,7 +234,7 @@ def _unquote(str): # header. By default, _getdate() returns the current time in the appropriate # "expires" format for a Set-Cookie header. The one optional argument is an # offset from now, in seconds. For example, an offset of -3600 means "one hour -# ago". The offset may be a floating point number. +# ago". The offset may be a floating-point number. # _weekdayname = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] |